ObjectInputStream readobject 不起作用 OptionalDataException

ObjectInputStream readobject doesnt work 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();
                }
            }
        }
    }

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