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
- profile
- Source
- bash
- Windows 10
- xargs
- Eclipse
- Mac
- vscode
- IntelliJ
- port
- VirtualBox
- import
- JavaScript
- netsh
- Windows
- tomcat
- find
- 줄바꿈 문자
- resource
- grep
- lsof
- plugin
- 네트워크
- 단축키
- ssh
- maVen
- context
- Quartz
- web.xml
- GIT
Archives
- Today
- Total
develog
System Properties 본문
System Properties
http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html
public class TestMain {
public static void main(String[] args) {
System.out.println("START");
System.out.println("-----------------------------------------");
Properties props = System.getProperties();
Set<Object> set = props.keySet();
Iterator<Object> iter = set.iterator();
while (iter.hasNext()) {
String key = (String) iter.next();
System.out.println(key + " ==> " + System.getProperty(key));
}
System.out.println("-----------------------------------------");
System.out.println("END");
}
}
'Dev > Java' 카테고리의 다른 글
URLConnection vs HTTPClient (0) | 2013.06.19 |
---|---|
java classpath command line 실행 (0) | 2013.06.12 |
java mail (0) | 2013.06.12 |
UserException (0) | 2013.06.11 |
excel open protected password in jacob (0) | 2013.06.08 |
Comments