java - java中ObjectInputStream中的IOException

标签 java io deserialization ioexception

我的代码有问题。当我在代码中使用 readObject 时,出现 IOException。整个程序工作正常,但是当我想使用 readObject 时,我得到了这个异常, 这是我用于保存对象的代码:

        File f = new File("employees.obj");
    ObjectOutputStream objOut = null;

    try {

        objOut = new ObjectOutputStream(new BufferedOutputStream(
                new FileOutputStream(f)));
        objOut.writeObject(newEmployee);
        objOut.flush();

        System.out.println("Object is serialized.");

    } catch (FileNotFoundException e) {
        System.out.println("File not found!");

    } catch (IOException e) {
        System.out.println("Failed!");

    } finally {

        if (objOut != null) {
            try {

                objOut.close();
            } catch (IOException e) {
            }
        }
    }

这是我用来恢复对象的代码:

    File f = new File("employees.obj");
    ObjectInputStream objIn = null;
    ArrayList<Employee> c = new ArrayList<Employee>();
    try {
        objIn = new ObjectInputStream(new BufferedInputStream(
                new FileInputStream(f)));
        while (objIn.readObject() != null) {
            Person employee = (Person) objIn.readObject();
            System.out.println("hello");
            System.out.println(employee.toString());
        }
        System.out.println(c.toString());
        return c;

    } catch (FileNotFoundException e) {
        System.out.println("1");
    } catch (IOException e) {
        e.printStackTrace();
    } catch (ClassNotFoundException e) {
        System.out.println("3");
    } catch (ClassCastException e) {
        System.out.println("4");
    } finally {

        if (objIn != null) {
            try {
                objIn.close();
            } catch (IOException e) {
                System.out.println("4");
            }
        }
    }
    return c;

以及控制台中的结果:

at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2553)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1296)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:350)
at org.bihe.DeSerializer.deSerializeEmployees(DeSerializer.java:20)
at org.bihe.Main.enterAsManager(Main.java:238)
at org.bihe.Main.menu(Main.java:92)
at org.bihe.Main.main(Main.java:50)

最佳答案

    while (objIn.readObject() != null) {

将反序列化一个对象(Person)。然后是下一行:

        Person employee = (Person) objIn.readObject();

尝试反序列化下一个对象。如果你位于文件末尾(EOF),那么它会抛出 IOException

要解决此问题,请执行以下操作:

    Person employee;
    while ((employee = (Person)objIn.readObject()) != null) {
        System.out.println("hello");
        System.out.println(employee.toString());
    }

while 将 readObject() 与 null 进行比较,并将其分配给 employee

关于java - java中ObjectInputStream中的IOException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16994291/

相关文章:

java - 具有强制排队功能的 ThreadPoolExecutor

java - 上传文件使用 HttpUrlConnection 时出错

c - 使用 fwrite() 写入某些字节时出错

java - Apache Artemis 代理不向 SwiftMQ AMQP 客户端发送消息

java - RabbitMQ 固定回复和消费者配置

java - 使用 Android 内部存储的文件大小

linux - 如何将文件内容分段打印到屏幕上?

java - 由于使用了 Observable List,Gson 无法反序列化

c# - 使用 JSON.net 反序列化为对象时从时间戳中丢失毫秒数

c# - 属性的 XML 反序列化