| Author |
Wanted to pack values in java like struct.pack() in python
|
Muthu Kumaran Murugesan
Greenhorn
Joined: Jul 08, 2010
Posts: 2
|
|
Hi,
I wanted to pack some values and later i have to unpack it ..
in python struct.pack() method is used to pack and unpack the values in the same way is there any way to pack values in java ,...??
If any suggestions kindly advice me
|
Thanks & Regards
-
MK
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19230
|
|
If I read it correctly, pack() turns the tuple into bytes and unpack() turns such bytes back into a tuple. Is this true?
If so, check out how serialization works. You can then write entire objects into any output stream using an ObjectOutputStream. To convert an object into bytes and back you can use the following:
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: Wanted to pack values in java like struct.pack() in python
|
|
|