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
- grep
- 단축키
- GIT
- find
- tomcat
- web.xml
- Source
- Mac
- resource
- lsof
- maVen
- Quartz
- import
- Eclipse
- 줄바꿈 문자
- context
- Windows 10
- netsh
- 네트워크
- JavaScript
- IntelliJ
- profile
- xargs
- vscode
- ssh
- Windows
- port
- plugin
- bash
- VirtualBox
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