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 | 31 |
Tags
- Oracle
- Python
- 한글 깨짐
- i18n
- SVN
- Postfix
- TextBox
- 일괄변경
- docker
- RabbitMQ
- 문자열자르기
- replace
- 확장자
- centos
- jQuery
- ubuntu
- MySQL
- Selectbox
- JavaScript
- Eclipse
- 천단위
- smarty
- yum
- TPL
- mariadb
- 부모창
- random
- php
- install
Archives
- Today
- Total
wilson's story
아이피 확인하기 본문
반응형
import java.net.*;
class Net {
public static void main(String[] args) throws Exception {
InetAddress inet = InetAddress.getLocalHost();
System.out.println("Local host IP : " + inet.getHostAddress());
}
}
반응형