반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- include액션태그
- 동기화
- 표현 언어
- include지시자
- ObjectInputStream
- interrupted()
- InputDialog
- StringReader
- MemoryStream
- ThreadGroup()
- 스레드그룸
- StringWriter
- first-of-child
- isinterrupted()
- sleep()메소드
- 아이디중복
- Linux셋팅
- 상관서브쿼리
- 리눅스셋팅
- 상관 서브 쿼리
- first-child
- ID중복
- 리눅스세팅
- String char[] 형변환
- Linux세팅
- char[] String 형변환
- Daemon()
- 메모리스트림
- include 지시자
- interrupt()
Archives
- Today
- Total
목록InetAddress (1)
다연이네
[days28] InetAddress 클래스
InetAddress 클래스 자바에서 자바에서는 IP주소를 다루는 클래스를 제공하는 클래스 package days28; import java.net.InetAddress; import java.net.UnknownHostException; public class Ex01 { public static void main(String[] args) { InetAddress local; //getHostAddress() : IP주소를 반환하는 메소드 //getAllByName() : 도메인명을 가지고 IP[] 반환 try { local = InetAddress.getLocalHost(); //로컬PC의 주소 정보를 반환하는 메소드 getLocalHost() System.out.println("> 내 컴퓨터의 I..
Java
2020. 11. 1. 00:20