Use the getAddress() method in the InetAddress class.
InetAddress address =
InetAddress.getByName("192.168.1.1");
byte[] bytes = address.getAddress();
for (byte b : bytes)
{
System.out.println(b & 0xFF);
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment