program to validate the IP address? Validity range should be
0 to 255
Answer / jyoti
import java.util.StringTokenizer;
public class ValidateIP {
String IP = null;
public void validate(String IP)
{
this.IP=IP;
StringTokenizer st=new StringTokenizer
(IP,".");
int i=1;
while(st.hasMoreTokens())
{
int valid=checkRange(st.nextToken
());
if(valid == 0)
{
System.out.println("Token "
+ i + "is not valid");
}
else
{
System.out.println("Token "
+ i + "is valid");
}
i++;
}
}
public int checkRange(String tok)
{
int n=Integer.parseInt(tok);
if(n>=0 && n<=255)
{
return 1;
}
return 0;
}
public static void main(String args[])
{
ValidateIP v=new ValidateIP();
v.validate("192.165.256.1");
}
}
Is This Answer Correct ? | 23 Yes | 2 No |
Difference between string, stringbuffer and stringbuilder?
What is bom encoding?
Can we use synchronized block for primitives?
Which all r Final classes in java except string?
What is the top class of AWT event hierarchy?
What is consumer in java?
Why a dead thread occurs?
What is the use of keywords in java?
can you use the two main method in same class?how?
4 Answers DELL, Geosoft, SparkTG,
What are assembly attributes?
Can we override the private methods?
How do you sort arrays in java?