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
- Python
- 한글 깨짐
- replace
- ubuntu
- i18n
- smarty
- JavaScript
- Postfix
- Oracle
- centos
- 문자열자르기
- TPL
- Selectbox
- 확장자
- SVN
- RabbitMQ
- 부모창
- 천단위
- docker
- mariadb
- jQuery
- yum
- Eclipse
- php
- install
- random
- TextBox
- 일괄변경
- MySQL
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());
}
}
반응형