I have to write 7 byte Integer value to DataOutputStream, this Integer contains 15 digits. How can I do that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
7 bytes = 56 bits just convert the number to binary and store it in those 7 bytes that you're sending. |
|||
|
|
7 bytes = 56 bits, you can use long to store 15digits integer And convert it into bytes :
/ writing from hand, may mess sth with indexes or shifts / |
|||
|
|