일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- selectedIndex
- 주석이 먹히지 않을 때
- 1521
- SUB함수
- 증가값
- selectoptions
- removeClass
- 파일질라설치오류
- 파일질라설치
- FileZilla설치
- index %
- Excel
- 파일질라다운로드
- Math.ceil()
- Math.floor()
- slideUp
- excel중복체크
- ctrl+/
- FileZilla다운로드
- Math.round()
- hide
- calc.plus
- 소스트리인증실패
- toFixed()
- is_check
- push오류
- addClass
- Git
- calc.minus
- Parent
- Today
- Total
잡동사니에도 사랑을
[21.08.31] InetAddress 본문
package network;
import java.net.InetAddress;
import java.net.UnknownHostException;
public class InetAddressMain { // 자바가 제공하는 클래스 InetAddress
// 추상이 아니다 직접적으로 new해서 써도 상관없다
public static void main(String[] args) throws UnknownHostException {
// 네이버 IP
InetAddress naver = InetAddress.getByName("www.naver.com");
System.out.println("NAVER IP = " + naver.getHostAddress());
System.out.println();
// 내 컴퓨터 IP
InetAddress local = InetAddress.getLocalHost();
System.out.println("localhost IP = " + local.getHostAddress());
System.out.println();
// 다음 - IP를 많이 얻고 싶을 때
InetAddress [] daum = InetAddress.getAllByName("www.daum.net");
for(InetAddress ia : daum) {
System.out.println("DAUM IP = " + ia.getHostAddress());
} // for
System.out.println();
}
}
// The constructor InetAddress() is not visible - 오류가 난 이유?
// 추상클래스도 아니고 기본 생성자를 갖고 있지 않다
// 고로 메소드를 이용해서 생성한다 - getByName(String host)
// host 이름을 주면 IP를 알려주겠다는 의미
// Unhandled exception type UnknownHostException - 에러가 나네?
// UnknownHostException - 예외를 걸어준다
'JAVA_SE > 12_network' 카테고리의 다른 글
[21.08.31] Protocol Server와 Client 연동 (0) | 2021.09.01 |
---|---|
[21.08.31] URLMain (0) | 2021.09.01 |