I have never used long integer or BigInteger format numbers in my Java code, and this aspect of the IP2Location databases does not appear to be documented. I need to know which it is, so that I can write some simple code to compare numbers for greater that or equal. Here are a couple of lines of data from the file...
"281470698522624","281470698524671","CN","China","Guangdong","Guangzhou"
"281470698524672","281470698528767","JP","Japan","Tokyo","Tokyo"
EDIT: The two numbers at the beginning of each line represent a range of IP addresses that are located in the city identified by the last 4 entries on the line. I convert my IP address to a decimal notation following a known algorithm, then search thru the file sequentially until I find a second number that is greater than or equal to my IP. Then I have the location data :) QED
Hope you can help, Mick :)
It is documented:
Given that your samples consist of more than 10 digits, you have the IPv6 version of DB4. Which would have been a good thing to mention in your question. These numbers can grow very large - larger than
long
can support (which can go as far asLong.MAX_VALUE
, which is2^63-1
, far less than 39 nines, which is as far as these numbers can theoretically go.You could represent them with
BigInteger
, or 2 longs (IPv6 addresses are 128 bits long, and longs are 64 bit, so 2 longs can do it - given that this is basic IPv6 info, I don't think it's useful or necessary for IP2Location to mention this. In fact, calling it 'decimal(39,0)' is a bit of a daft way to state 'IPv6 address as a single number stated in decimal'. At any rate, they represent InetAddresses, so you might want to use the class that actually describes what it is, namely,InetAddress
.