Java InetAddress.getHostName()/getHostAddress


import java.net.InetAddress;
import java.util.Scanner;

class Blog {
   public static void main(String[] args) throws Exception {
	   new Byul();
   }
}

class Byul {
	Scanner sc;
	
	Byul() {
		sc = new Scanner(System.in);
		while (true) {
			System.out.println("Host 이름을 입력하세요.");		
			try {
				InetAddress ia = InetAddress.getByName(sc.next());
				System.out.println("Computer NAME: " + ia.getHostName());
				System.out.println("Computer IP: " + ia.getHostAddress());
			} catch (Exception e) {
				System.out.println(e.getMessage());
			}
		}
	}
}

댓글

이 블로그의 인기 게시물

substring 예제: 문자열을 입력 받아 한 글자씩 회전시켜 모두 출력하는 프로그램을 작성하라

단체 채팅 구현