zdravim,
nevíte někdo proč mi to furt vyhazuje "java.io.NotSerializableException" ?
public class neco {
private int a;
private int b;
public void setA(int x){
a=x;
}
public void setB(int x){
b=x;
}
}
...
neco x=new neco();
x.setB(1);
x.setA(5);
ObjectOutput out = new ObjectOutputStream(new FileOutputStream("test.dat"));
out.writeObject(x);
out.close();
} catch (IOException e) {
System.out.println("Chyba při zápisu souboru : "+e);
java.io.* mam naimportovaný