0

当我使用 readObject 时,我得到 OptionalDataException(当流中的下一个元素是原始数据时,尝试读取一个对象),我该如何解决这个问题?页面是可序列化的。writeObject 有效。

public Map<Long,Page<byte[]>> readAllPages(){

        ObjectInputStream in = null;
        try
        {
            in= new ObjectInputStream(new FileInputStream(HardDisk.getDefault_File_Name()));
            @SuppressWarnings("unchecked")
            Map<Long, Page<byte[]>> readMap = (Map<Long, Page<byte[]>>)in.readObject(); // exception here
            return readMap;
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
            System.exit(0);
            return null;
        }
        finally
        {
            if(in != null)
            {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

public void writeAllPages(Map<Long,Page<byte[]>> hd){
        ObjectOutputStream out = null;
        try
        {
            out = new ObjectOutputStream(new FileOutputStream(HardDisk.getDefault_File_Name()));
            out.writeObject(hd);
        }
        catch(Exception ex)
        {
            ex.printStackTrace();
            System.exit(0);
        }
        finally
        {
            if(out != null)
            {
                try {
                    out.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
4

1 回答 1

0

问题是具有读取方法的类扩展了 ObjectInputStream 所以我不应该也创建“in”对象,我删除它并用“this”交换它,问题就解决了!

于 2016-04-29T19:58:18.863 回答