我正在序列化的类中有一个writeObject方法,并且在其中调用defaultWriteObject。怎么了字段密码是我尝试加密然后自己解密的临时字段。当我运行此代码时,在defaultWriteObject()处收到NotActiveException。任何帮助将不胜感激,谢谢:)

public static void main(String[] args) throws IOException,
  ClassNotFoundException {
    Account bankAccount;
    bankAccount = new Account("Person", 123456789, "Pa55word", 900);

    try {
    ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream("P:/Account.txt"));
    bankAccount.writeObject(out);
    out.close();
    Account otherAccount = new Account();

    ObjectInputStream in = new ObjectInputStream(new FileInputStream("P:/Account.txt"));
    otherAccount.readObject(in);
    in.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}

private void writeObject(ObjectOutputStream out) throws IOException, ClassNotFoundException {
    out.defaultWriteObject();
    out.writeObject(encrypt(password));
}

private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    in.defaultReadObject();
    password = decrypt((String)in.readObject());
}


这是堆栈跟踪:

java.io.NotActiveException: not in call to writeObject
at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
at Account.writeObject(Account.java:75)
at Account.main(Account.java:59)

最佳答案

问题出在这里:bankAccount.writeObject(out);

您需要将对象写入ObjectOutputStream,然后Serializable将调用方法writeObject并将其保存。

尝试:out.writeObject(bankAccount)

10-01 09:06