Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Get local host name and address */
- // netbeans
- import java.net.InetAddress;
- import java.net.UnknownHostException;
- public class Main {
- public static void main(String[] args) {
- try {
- System.out.println(InetAddress.getLocalHost().getHostName());
- System.out.println(InetAddress.getLocalHost().getHostAddress());
- } catch (UnknownHostException e) {
- System.err.println(e);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement