Hi, ich sitze gerade daran, ein Objekt einer Klasse zu serialisieren und nach ein wenig Debugging schient das jetzt auf fehlerfrei zu funktionieren:
Wenn ich es wieder auslese, bekomme ich eine EOF Exception:
Hat da jemand eine Idee?
Java:
ObjectOutputStream objOut = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(path)));
objOut.writeObject(this);
objOut.close();
Wenn ich es wieder auslese, bekomme ich eine EOF Exception:
Java:
ObjectInputStream objIn = new ObjectInputStream(new BufferedInputStream(new FileInputStream(path)));
GroundMap map = (GroundMap) objIn.readObject();
objIn.close();
return map;
Hat da jemand eine Idee?