반응형
SMALL
import java.net.InetAddress;
public class IpDisplay {
public static void main(String[] args) {
// TODO Auto-generated method stub
try{
InetAddress ip = InetAddress.getLocalHost(); // => 컴퓨터명/IP 출력
String source_id = ip.getHostAddress(); // => IP 출력
}catch(Exception e){
System.out.println(e.getMessage());
}
}
반응형
'Programing > JAVA' 카테고리의 다른 글
[java] Map을 로그에 출력하는 방법 (11) | 2022.02.11 |
---|---|
[ Java ] 로컬 ip 및 포트 확인방법 (0) | 2021.11.04 |
[ Java ] 소켓통신 예제 (1) | 2021.10.14 |
[ Java ] 파일생성 (0) | 2021.10.12 |
[JAVA] quartz 를 이용한 스케쥴러 구현 (0) | 2018.06.18 |