Oct
01
|
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); }
Leave a Reply
You must be logged in to post a comment.