The methods of Java.IO.ObjectInputStream are listed below. For a list of all members, see the ObjectInputStream Members list.
See Also: Inherited members from Java.IO.InputStream
DefaultReadObject()Default method to read objects from this stream. | ||
override | Read()Reads a single byte from the source stream and returns it as an integer in the range from 0 to 255. | |
ReadBoolean()Reads a boolean from the source stream. | ||
ReadByte()Reads a byte (8 bit) from the source stream. | ||
ReadChar()Reads a character (16 bit) from the source stream. | ||
ReadDouble()Reads a double (64 bit) from the source stream. | ||
ReadFields()Reads the persistent fields of the object that is currently being read from the source stream. | ||
ReadFloat()Reads a float (32 bit) from the source stream. | ||
ReadFully(byte[])Reads bytes from the source stream into the byte array dst. | ||
ReadFully(byte[], int, int)Reads byteCount bytes from the source stream into the byte array dst. | ||
ReadInt()Reads an integer (32 bit) from the source stream. | ||
ReadLine()Reads the next line from the source stream. | ||
ReadLong()Reads a long (64 bit) from the source stream. | ||
ReadObject()Reads the next object from the source stream. | ||
ReadShort()Reads a short (16 bit) from the source stream. | ||
ReadUnshared()Reads the next unshared object from the source stream. | ||
ReadUnsignedByte()Reads an unsigned byte (8 bit) from the source stream. | ||
ReadUnsignedShort()Reads an unsigned short (16 bit) from the source stream. | ||
ReadUTF()Reads a string encoded in Java.IO.IDataInput from the source stream. | ||
RegisterValidation(IObjectInputValidation, int)Registers a callback for post-deserialization validation of objects. | ||
SkipBytes(int)Skips length bytes on the source stream. |
EnableResolveObject(bool)Enables object replacement for this stream. | ||
ReadClassDescriptor()Reads a class descriptor from the source stream. | ||
ReadObjectOverride()Method to be overridden by subclasses to read the next object from the source stream. | ||
ReadStreamHeader()Reads and validates the ObjectInputStream header from the source stream. | ||
ResolveClass(ObjectStreamClass)Loads the Java class corresponding to the class descriptor osClass that has just been read from the source stream. | ||
ResolveObject(Java.Lang.Object)Allows trusted subclasses to substitute the specified original object with a new object. | ||
ResolveProxyClass(string[])Creates the proxy class that implements the interfaces specified in interfaceNames. |