Serialization example

package com.mycomp.myprod.server.common

class MyClass implements serializable{

private int myT;

public MyClass(int t){
myT=t;
}

public int getT(){
return myT;
}
}

———————————————————–
package com.mycomp.myprod.client.common

class MyClass implements serializable{

private int myT;

public MyClass(int t){
myT=t;
}

public int getT(){
return myT;
}
}

One Response to “Serialization example”

  1. A rose by any other name… Object serilization and the Java JVM « Big Endian – Do you know what your bytes are doing RIGHT NOW? Says:

    [...] the two classes here. They’re identical in every meaningful way. The one on top belongs to a server application of [...]


Leave a Reply