当前位置: 代码迷 >> Web开发 >> 对象序列化存入文件有关问题
  详细解决方案

对象序列化存入文件有关问题

热度:480   发布时间:2013-06-19 10:26:41.0
对象序列化存入文件问题
String id = customer.getId();
String relativePath = "/WEB-INF/classes/customerData/" + id
+ ".ser";
System.out.println("2");
String realPath = getServletContext().getRealPath(relativePath);
// 将对象序列化到文件中
FileOutputStream fos = new FileOutputStream(realPath);
ObjectOutputStream oos = new ObjectOutputStream(fos);
oos.writeObject(customer);

我用这段代码进行序列化的时候,E:\大二(下)\workplace1\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\6_1_3\WEB-INF\classes\customerData\4628514254221416162.ser (系统找不到指定的路径。)
会出现这样的错误,
求教!!!
Java 序列化 web javabean

------解决方案--------------------
请确认 /WEB-INF/classes/customerData/ 目录存在且一般用户可写
  相关解决方案