![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fup5Ug%2FbtrfBrhmu3T%2FnsjBktPOk8LpUrgKKBVph0%2Fimg.png)
네트워크 기초
·
Network
서버 서비스를 제공하는 프로그램 클라이언트 서비스를 받는 프로그램. 네트워크 데이터를 필요로 하는 모든 애플리케이션 해당 IP 번호 컴퓨터 식별번호. 0~255 사이의 정수, xxx.xxx.xxx.xxx 포트 번호 같은 컴퓨터의 프로그램들 식별 번호. 0~65535 사이의 정수 package inetaddress;import java.net.InetAddress;import java.net.UnknownHostException;public class InetAddressExample { public static void main(String[] args) { try { InetAddress local= InetAddress.getLocalHost(); ..