これが私の現在のコードです:
//export method
public static void exportObj (Object obj, String fname) {
try {
// Serialize data object to a file
ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(fname));
out.writeObject(obj);
out.close();
} catch (IOException e) {}
}
//import method
public static Object importObj (String fname) {
try {
ObjectInputStream in = new ObjectInputStream(new FileInputStream(fname));
return in.readObject();
} catch (IOException e) {}
return new Object();
}
エクスポート機能は正常に機能すると思いますが、User
オブジェクトをファイルに変換して保存すると思いますが、インポートしようとすると ClassNotFound Exception が発生します。何が起こっている?