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
- context
- lsof
- Mac
- grep
- ssh
- JavaScript
- IntelliJ
- xargs
- resource
- Source
- 네트워크
- 줄바꿈 문자
- tomcat
- VirtualBox
- bash
- Quartz
- Eclipse
- maVen
- plugin
- web.xml
- netsh
- profile
- 단축키
- Windows
- vscode
- Windows 10
- GIT
- find
- import
- port
Archives
- Today
- Total
develog
[Java] System.getProperties(), System.getProperty() 본문
Properties props = System.getProperties();
Iterator<Object> iter = props.keySet().iterator();
while (iter.hasNext()) {
String key = (String) iter.next();
String value = System.getProperty(key);
System.out.println(key + "\t\t: " + value);
}
'Dev > Java' 카테고리의 다른 글
[Java] removeTag (0) | 2014.09.18 |
---|---|
[Java] http 인증 접속 (0) | 2014.09.18 |
memory (0) | 2014.09.10 |
eclipse.ini (0) | 2014.09.10 |
[Java] 익명 PL/SQL 블럭 실행 (0) | 2014.08.29 |
Comments