Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.net.*;
- class app {
- public static void main (String args[]) throws UnknownHostException {
- InetAddress Address = InetAddress.getLocalHost();
- System.out.println(Address);
- Address = InetAddress.getByName("codeforces.ru");
- System.out.println(Address);
- InetAddress SW[] = InetAddress.getAllByName("vk.com");
- for (int i = 0; i < SW.length; ++i) System.out.println(SW[i]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment