본문 바로가기
프로그래밍 놀이터/안드로이드, Java

[Java] InetAddress 이야기

by 돼지왕 왕돼지 2013. 8. 22.
반응형


 자바, InetAddress 이야기

 

[Java] 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()







반응형

댓글