ObjectInputStream readobject不起作用OptionalDataException

时间:2016-04-20 13:50:35

标签: java objectinputstream optionaldataexception

当我使用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();
                }
            }
        }
    }

1 个答案:

答案 0 :(得分:0)

问题是具有read方法的类扩展了ObjectInputStream,因此我也不应该创建&#34; in&#34;对象,我将其删除并与&#34;交换#34;问题解决了!