I have the following simple piece of code which is intended to detect that a given IPv4 address indeed only has numeric values (that is after the dots have been stripped):

import edu.gcc.processing.exceptions.net.IPAddressNumericException;

//Get the IP address
  String address = "239.255.255.255";

//Check to see if this is a number      
  try {
    String IPNumbers = address.replace(".", "");
    Integer.parseInt(IPNumbers);            
  } catch (NumberFormatException e) {
    System.out.print(e.getMessage());
  }

For some reason, the NumberFormatException is fired, and I get this error:

For input string: "239255255255"

Could someone please help me understand this? The parseInt() method works on smaller numbers, such as 127001.

Thank you for your time.

link|improve this question

8  
Well, "what is the range of an integer"? (And why might I have asked that question? :-) – pst Dec 7 '11 at 21:29
You might want to look into using a regex stackoverflow.com/questions/46146/… – Andrew Finnell Dec 7 '11 at 21:32
Yep, that's it. Thanks! – spryno724 Dec 7 '11 at 21:33
feedback

6 Answers

up vote 3 down vote accepted

try using Long.parseLong(IPNumbers)

link|improve this answer
That's exactly what I needed. Thanks! – spryno724 Dec 7 '11 at 21:36
feedback

Why not use a regular expression, or break it down into its components by using split(".")?

There are other limitations besides needing to consist solely of digits. For example:

666.666.666.666

This will parse just fine, but is an... unlikely IP.

Breaking it up into its parts lets you determine (a) that it has four parts, and (b) that each part actually makes sense in the context of an IP address.

You could also use an InetAddress implementation, or InetAddressValidator from Apache Commons.

link|improve this answer
Also - a very unfortunate one :) – Rion Williams Dec 7 '11 at 21:32
+1 for actually suggesting that the approach of just checking whether it is a number is insufficient, and that switching to a long will not solve this – Robin Dec 7 '11 at 22:03
feedback

239255255255 is too big to be held by an Integer. Try using a BigInteger or a BigDecimal.

link|improve this answer
feedback

For very large integers you may want to use the BigInteger class (or BigDecimal), as the values may exceed the limits of Integer.

Integer Limits:

Minimum : -2147483648
Maximum :  2147483647

Using BigInteger:

string s = "239255255255";
BigInteger yourNumber = new BigInteger(s);
link|improve this answer
hmm... What method can I use to convert the string to an integer? – spryno724 Dec 7 '11 at 21:33
There is also a BigDecimal class if you need one, I'll include the necessary documentation in an edit. – Rion Williams Dec 7 '11 at 21:33
239255255255 is not an integer. See docs.oracle.com/javase/6/docs/api/java/lang/… – Steve Kuo Dec 7 '11 at 21:34
@spryno724, An integer will be unable to hold that large of a value, you will have to use BigInteger to store it. – Rion Williams Dec 7 '11 at 21:36
Excellent, thanks all! – spryno724 Dec 7 '11 at 21:37
feedback

The logical step up from an integer is a long

link|improve this answer
feedback

Range of an Integer is -2,147,483,648 to 2,147,483,647, the number you have above mentioned is not included in these range, so use long , the range of long primitive type is in between -9,223,372,036,854,775,808 and 9,223,372,036,854,775,807.

So for your case its better to use Long.parseLong() function to convert such large number to long type.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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