Archive for March, 2009
Integer IP Addresses
I know that every couple of years I need the snippet of code that helps me convert the integer version of an IP address back and forth to a string. You would think that after all this time I’d be able to write it blind.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public static String convertIntegerToIp(long ip) {
[...]

