Class au.net.aba.io.ObjectOutput
All Packages Class Hierarchy This Package Previous Next Index
Class au.net.aba.io.ObjectOutput
java.lang.Object
|
+----java.io.OutputStream
|
+----java.io.FilterOutputStream
|
+----java.io.DataOutputStream
|
+----au.net.aba.io.ObjectOutput
- public class ObjectOutput
- extends DataOutputStream
- implements StreamConstants
A compatibility class which writes objects serialised using the
externalisable interface.
Note: this interface assumes that, if the JVM doing the deserialisation
is 1.1 or greater, that the classes implementing Externalizable include
the declaration:
static final long serialVersionUID = 1L;
in them. Failure to do so will cause the later JVMs to believe the
class files they are using are different from the one this class will
produce and result in an exception being thrown.
-
ObjectOutput(OutputStream)
-
-
writeObject(Object)
-
ObjectOutput
public ObjectOutput(OutputStream out) throws IOException
writeObject
public void writeObject(Object obj) throws IOException
All Packages Class Hierarchy This Package Previous Next Index