I want to know why when I serialize the same object in memory using table :
ByteArrayOutputStream byteOutput = new ByteArrayOutputStream();
ObjectOutputStream stream = new ObjectOutputStream(byteOutput);
stream.writeObject(m.view()); //view return a string
stream.flush();
stream.close();
byteOutput.flush();
byteOutput.close();
and I run my program several times, I get different results(not a great difference but still a difference)
execution 1 :4497
execution 3 :4500
execution 4 :4500
execution 5 :4494
m : is an object that contains another object of other classes. I cannot list all classes here, it's a large framework and string serialized is the same !
mandoverhead? Maybe try to post a complete SSCCE (sscce.org)? – Guillaume Polet Apr 24 '12 at 9:06m.view()is aString? Can I suggest pulling that out of the loop, or hardcoding the actual value a literal, and then trying again? – Tom Hawtin - tackline Apr 24 '12 at 9:40