gpt4 book ai didi

用于从位于服务器中的 .ser 文件读取对象的 Java 程序

转载 作者:可可西里 更新时间:2023-11-01 16:43:44 29 4
gpt4 key购买 nike

我的想法是,我想从位于服务器中的序列化文件中读取一个对象。如何做到这一点?

我只能使用以下代码读取 .txt 文件:

   void getInfo() {
try {
URL url;
URLConnection urlConn;
DataInputStream dis;

url = new URL("http://localhost/Test.txt");

// Note: a more portable URL:
//url = new URL(getCodeBase().toString() + "/ToDoList/ToDoList.txt");

urlConn = url.openConnection();
urlConn.setDoInput(true);
urlConn.setUseCaches(false);

dis = new DataInputStream(urlConn.getInputStream());

String s;
while ((s = dis.readLine()) != null) {
System.out.println(s);
}
dis.close();
} catch (MalformedURLException mue) {
System.out.println("Error!!!");
} catch (IOException ioe) {
System.out.println("Error!!!");
}
}

最佳答案

你可以用这个方法做到这一点

  public Object deserialize(InputStream is) {
ObjectInputStream in;
Object obj;
try {
in = new ObjectInputStream(is);
obj = in.readObject();
in.close();
return obj;
}
catch (IOException ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
catch (ClassNotFoundException ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
}

urlConn.getInputStream() 喂它,你会得到 ObjectDataInputStream 不适合读取使用 ObjectOutputStream 完成的序列化对象。分别使用ObjectInputStream

要将对象写入文件还有另一种方法

  public void serialize(Object obj, String fileName) {
FileOutputStream fos;
ObjectOutputStream out;
try {
fos = new FileOutputStream(fileName);
out = new ObjectOutputStream(fos);
out.writeObject(obj);
out.close();
}
catch (IOException ex) {
ex.printStackTrace();
throw new RuntimeException(ex);
}
}

关于用于从位于服务器中的 .ser 文件读取对象的 Java 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15590534/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com