2015. 1. 25. 16:51
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

package InetAddress;

import java.net.InetAddress;
import java.net.UnknownHostException;

public class getHostName {
    public static void main(String[] args){
        try {
            InetAddress address=InetAddress.getLocalHost();
            System.out.println("My name is "+address.getHostName());
        } catch (UnknownHostException e) {
                System.out.println("I don't know the name");
        }
    }
}

'Java' 카테고리의 다른 글

InetAddress : isReacheable(int timeout)  (0) 2015.01.25
InetAddress : getLocalHost()  (0) 2015.01.25
InetAddress : getHostAddress()  (0) 2015.01.25
InetAddress : getCanonicalHostName()  (0) 2015.01.25
InetAddress : getByName  (0) 2015.01.25
Posted by af334