자바는 IP 주소를 java.net 패키지의 InetAddress로 표현한다. 👉 로컬 컴퓨터의 IP 주소를 얻을 수 있다. 👉 도메인 이름으로 DNS에서 검색한 후 IP 주소를 가져올 수도 있다. 1. getLocalHost 사용 InetAddress ia = InetAddress.getLocalHost(); 👉 .getLocalHost() 메소드를 통해 로컬 컴퓨터의 InetAddress를 얻을 수 있다. getLocalHost를 사용하는 이유❓ InetAddress는 직접적으로 객체를 생성할 수 없다. 👉 정적 메소드인 getLocalHost를 이용해 간접적으로 객체를 얻을 수 있다. 👉 로컬 pc의 ip 주소를 갖고 있는 inetAddress를 얻을 수 있다. 2. getByName, getAll..