반응형
자바, InetAddress 이야기 |
InetAddress 클래스는 특정 IP 주소를 다루기 위해 고안된 class 이다.
이 녀석은 factory method 들을 제공하며, 생성자로 만들 수 없다.
InetAddress[] getAllByName( String host )
InetAddress getByAddress( byte[] addr )
addr[0] = (byte) 192
addr[1] = (byte) 128
addr[2] = (byte) 1
addr[3] = (byte) 121
InetAddress getByAddress( String host, byte[] addr )
InetAddress getByName( String host )
InetAddress getLocalHost()
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[Java] JDBC, Database Clob 이 뭐야? (0) | 2013.09.02 |
---|---|
[android] view 를 최적화시켜보자 ( Hierarchy Viwer & Pixel Perfect ) (0) | 2013.09.02 |
[android] LBS ( Location Based Service ), GPS vs. WIFI vs. 3G (0) | 2013.08.22 |
[Java] String 에 대한 이야기. (0) | 2013.08.22 |
[android] Caused by: java.lang.NullPointerException at android.app.AlertDialog.resolveDialogTheme (0) | 2013.08.20 |
댓글