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

package InetAddress;

import java.net.InetAddress;

public class getByName {
    public static void main(String[] args){
        try {
            InetAddress ia=InetAddress.getByName("localhost");
            System.out.println(ia.getHostName());
        } catch (Exception e) {
                System.err.println(e);
        }
    }
}

'Java' 카테고리의 다른 글

InetAddress : getHostAddress()  (0) 2015.01.25
InetAddress : getCanonicalHostName()  (0) 2015.01.25
InetAddress : getAllByName()  (0) 2015.01.25
FileWriter (File file)  (0) 2015.01.24
Scanner : useDelimeter(String pattern  (0) 2015.01.24
Posted by af334