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
- Windows
- Quartz
- lsof
- VirtualBox
- Mac
- bash
- profile
- 네트워크
- Eclipse
- resource
- 단축키
- ssh
- port
- tomcat
- plugin
- grep
- maVen
- IntelliJ
- GIT
- import
- vscode
- web.xml
- JavaScript
- 줄바꿈 문자
- context
- netsh
- xargs
- Windows 10
- find
- Source
Archives
- Today
- Total
develog
properties 본문
public void testProps() throws Exception {
Properties props = new Properties();
props.load(new FileInputStream("src/db.properties"));
Set set = props.keySet();
Iterator iter = set.iterator();
while (iter.hasNext()) {
String key = (String) iter.next();
System.out.println(key + " : " + props.getProperty(key));
}
}
'Dev > Java' 카테고리의 다른 글
spring pointcut expression syntax (0) | 2013.06.27 |
---|---|
enum (0) | 2013.06.26 |
String.valueOf(), String.toString() (0) | 2013.06.25 |
현재 클래스 경로 구하기 (0) | 2013.06.19 |
URLConnection vs HTTPClient (0) | 2013.06.19 |
Comments