I was writing an article in which I wanted to show how to send objects across the network, from Java to CLR/.Net and Back.
http://ferozedaud.blogspot.com/2009/11/howto-serialize-data-from-object-from.html
While doing research for this, I could not find a Java equivalent for BitConverter class that exists in .NET. Due to this, I had to resort to using ByteBuffer to marshal primitive types to byte representation and vice versa.
Does anyone know of a Java equivalent for BitConverter class?