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