作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在序列化的类中有一个 writeObject 方法,并且我在其中调用 defaultWriteObject。这里有什么问题吗?字段密码是我尝试加密然后自行解密的 transient 字段。当我运行此代码时,我在 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
,然后Serialized将调用您的方法writeObject并保存它。
尝试:out.writeObject(bankAccount)
关于java - 我在 defaultWriteObject 处收到 NotActiveException,但我不知道为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49698315/
为什么需要将 defaultReadObject() 和 defaultWriteObject() 作为 readObject(ObjectInputStream o) 和 中的第一条语句writeO
我正在序列化的类中有一个 writeObject 方法,并且我在其中调用 defaultWriteObject。这里有什么问题吗?字段密码是我尝试加密然后自行解密的 transient 字段。当我运行
当我读到Thinking in java中关于Serializable接口(interface)的时候,有一句话是这样说的: If you use the default mechanism to w
我是一名优秀的程序员,十分优秀!