The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
January 2002

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

my turn :p

Posted by Chin Loong on January 25, 2002 at 12:28 AM

ok, my suggestion

private boolean isInteger(String str)
{
try
{
int i=Integer.parseInt(str);
}
catch(NumberFormatException)
{
return false;
}
return true;
}



Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us