[Sun Sys] 자바(Java) - Properties 파일 읽기
자바를 통해서 Properties 파일을 읽는 방법에 대해서 정리하였다.
1. properties 파일
폴더: /src/main/resources
database=localhost
dbuser=helloUser
dbpassword=password
* 파일명: configuration.properties
2. 자바 - 코드
public class GetPropertyValue {
private String dbpassword;
private String database;
private String dbuser;
InputStream inputStream;
public String getPropertyValue() throws Exception{
try{
Properties prop = new Properties();
String propFileName = "configuration.properties";
inputStream = getClass().getClassLoader().getResourceAsStream(propFileName);
if (inputStream != null) {
prop.load(inputStream);
} else {
throw new FileNotFoundException("property file '" + propFileName + "' not found in the classpath");
}
dbpassword = prop.getProperty("dbpassword");
database = prop.getProperty("database");
dbuser = prop.getProperty("dbuser");
} catch(Exception e){
logger.info("Exception : " + e);
} finally {
inputStream.close();
}
return result;
}
}
* 파일명: GetPropertyValue.java
'소프트웨어(SW) > Sun Sys - Java' 카테고리의 다른 글
[Java(자바)] barbecue 바코드 생성 라이브러리 (3) | 2021.03.09 |
---|---|
[Sun Sys - Java] 태스트도구 JUnit 5 - Eclipse(STS 4.4)에서 사용하는 방법 (0) | 2020.09.30 |
[Sun Sys - Java] 자바 - Jar 파일 실행하기(윈도우, 리눅스) (0) | 2019.11.18 |
[Java] Swing - JOptionPane - showInputDialog (0) | 2015.06.01 |
[Java] API 8.0 사이트 (0) | 2015.06.01 |