HI,
I'm trying to port some code from C# to Java. The C# code uses a <a
href="http://msdn2.microsoft.com/en-us/library/
system.runtime.serialization.formatters.binary.binaryformatter(VS.
85).aspx">BinaryFormatter</a> class to serialize the object or graph
to a binary representation. What would be the class equivalent in
Java?
Thanks
Andy
Andy - 16 Jan 2008 19:39 GMT
> HI,
>
[quoted text clipped - 7 lines]
> Thanks
> Andy
Opps... google didn't like my html.. the C# class is BinaryFormatter.
Documentation can be found here:
http://msdn2.microsoft.com/en-us/library/system.runtime.serialization.formatters
.binary.binaryformatter(VS.85).aspx
Roedy Green - 16 Jan 2008 21:24 GMT
>I'm trying to port some code from C# to Java. The C# code uses a <a
>href="http://msdn2.microsoft.com/en-us/library/
>system.runtime.serialization.formatters.binary.binaryformatter(VS.
>85).aspx">BinaryFormatter</a> class to serialize the object or graph
>to a binary representation. What would be the class equivalent in
>Java?
see http://mindprod.com/jgloss/serialization.html

Signature
Roedy Green, Canadian Mind Products
The Java Glossary, http://mindprod.com
Arne Vajhøj - 17 Jan 2008 01:18 GMT
> I'm trying to port some code from C# to Java. The C# code uses a <a
> href="http://msdn2.microsoft.com/en-us/library/
> system.runtime.serialization.formatters.binary.binaryformatter(VS.
> 85).aspx">BinaryFormatter</a> class to serialize the object or graph
> to a binary representation. What would be the class equivalent in
> Java?
ObjectOutputStream and ObjectInputStream.
Arne