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?

link|improve this question

Can you post an example how this int look like and how its string representation should look like? I can't imagine how to put 255255255255 in an int, it would overflow. – BalusC Dec 24 '09 at 10:00
1  
@BalusC: A IPv4 address is just a 32 bit number, it's just that it's usually represented as 4 8-bit values. The information fits just fine in 32 bits, though. – skaffman Dec 24 '09 at 10:03
2  
Remember that, if you want to ever support IPv6, you can't use single int to handle IP addresses. – iny Dec 24 '09 at 10:08
feedback

3 Answers

up vote 5 down vote accepted

This should work:

int ipAddress = ....
byte[] bytes = BigInteger.valueOf(ipAddress).toByteArray();
InetAddress address = InetAddress.getByAddress(bytes);

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.

link|improve this answer
1  
That does indeed still require swapping the order of the byte array. However, it turns out my input was actually in host order after all! Thanks. – kdt Dec 24 '09 at 11:56
will not work for addresses in the range 0.0.0.0 - 0.127.255.255 and 255.128.0.0 - 255.255.255.255: bytes will have less than 4 elements – Carlos Heuberger Jan 21 '10 at 16:31
feedback

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.

byte[] bytes = bigInteger.toByteArray();

byte[] inetAddressBytes;

// Should be 4 (IPv4) or 16 (IPv6) bytes long
if (bytes.length == 5 || bytes.length == 17) {
    // Remove byte with most significant bit.
    inetAddressBytes = ArrayUtils.remove(bytes, 0);
} else {
    inetAddressBytes = bytes;
}

InetAddress address = InetAddress.getByAddress(inetAddressBytes);

PS above code uses ArrayUtils from Apache Commons Lang.

link|improve this answer
I don't think an additional leading sign bit will be a problem, but missing bytes if the address is in the range 0.0.0.0 - 0.127.255.255 and 255.128.0.0 - 255.255.255.255 – Carlos Heuberger Jan 21 '10 at 16:24
Sorry, I'm not an expert in this field. Could you elaborate on your comment? I'm afraid I'm missing the point (and could potentially have a bug in my code ;) ). – Dennis Laumen Jan 22 '10 at 12:03
feedback

This may work try


public static String intToIp(int i) {
        return ((i >> 24 ) & 0xFF) + "." +
               ((i >> 16 ) & 0xFF) + "." +
               ((i >>  8 ) & 0xFF) + "." +
               ( i        & 0xFF);
    }

link|improve this answer
2  
He was asking for int-to-bytearray, not int-to-string. Also your words "this may work try" makes me think that you just googled blind and copypasted random function? Why? – BalusC Dec 24 '09 at 10:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.