我有一个对象,我想在文件中写入:
class PersonDaten implements Serializable {
private static final long serialVersionUID = 1L;
String firstname = "";
Sting lastname = "";
}
class InputOutput {
public static <T> void output(T daten, String datei){
try {
FileOutputStream fout = new FileOutputStream(datei);
ObjectOutputStream oos = new ObjectOutputStream(fout);
oos.writeObject(daten);
oos.close();
}
catch (Exception e) { e.printStackTrace(); }
}
}
我有一个可运行的,它与反射一起工作,使 SwingUtilities.invokeLater() 只有 1 次。
public class UpdateRoutine implements Runnable, Serializable {
private static final long serialVersionUID = 1L;
List<Map.Entry<Method, Object[]>> updates;
public UpdateRoutine(){
updates = new ArrayList<Map.Entry<Method, Object[]>>();
}
@Override
public void run() {
for(int i = 0; i < updates.size(); i++){
Entry<Method, Object[]> m = updates.get(i);
Object[] values = m.getValue();
try {
if(values.length == 1){
m.getKey().invoke(values[0]);
}
else if(values.length == 2){
m.getKey().invoke(values[0], values[1].getClass().cast(values[1]));
}
else if(values.length == 3){
m.getKey().invoke(values[0], values[1].getClass().cast(values[1]),
values[2].getClass().cast(values[2]));
}
else if(values.length == 4){
m.getKey().invoke(values[0], values[1].getClass().cast(values[1]),
values[2].getClass().cast(values[2]), values[3].getClass().cast(values[3]));
}
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
System.out.println(m.getKey() + " " + values[0]);
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
}
public void addToUpdate(Method m, Object[] args){
Entry<Method, Object[]> se = new SimpleEntry<Method, Object[]>(m, args);
updates.add(se);
}
}
通过关闭我在 Main 中调用的应用程序
addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent windowEvent) {
userDaten.save();
System.exit(0);
}
});
然后出现异常
java.io.NotSerializableException: java.lang.reflect.Method
at util.InputOutput.output(InputOutput.java:40)
at training.Person.save(Person.java:55)
at ui.Main$1.windowClosing(Main.java:105)
仅当首次运行不存在“File.dat”时才会出现此异常。如果我在第一次运行应用程序时不使用 UpdateRoutine,则“File.dat”可以保存而不会出现异常,然后我就不会遇到这个问题。
- PersonDatan 没有导入 java.lang.reflect.Method 。为什么会出现这个异常?
- 如何避免这个异常?