I have an int which contains an IP address in network byte order, which I would like to convert to an InetAddress object. I see that there is an InetAddress constructor that takes a byte[], is it necessary to convert the int to a byte[] first, or is there another way?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||||||
|
|
This should work:
You might have to swap the order of the byte array, I can't figure out if the array will be generated in the correct order. |
|||||||||||
|
|
Not enough reputation to comment on skaffman's answer so I'll add this as a separate answer. The solution skaffman proposes is correct with one exception. BigInteger.toByteArray() returns a byte array which could have a leading sign bit.
PS above code uses ArrayUtils from Apache Commons Lang. |
|||||
|
|
I think that this code is simpler:
|
|||
|
|
|
This may work try
|
|||||
|