반응형
Properties 의 load 메서드를 이용한 properties 파일 정보 읽어오기
역시 같은 속성이 존재한다면 마지막 값을 읽어옴.
ex)
name=seung
name=kyu
결고
name=kyu
package readproperty;
import java.io.FileInputStream;
import java.util.Properties;
/**
* Properties class 를 이용한 file read
*
* @author seungkyu.lee
*
*/
public class ReadFile2 {
public static void main( String[] args ) {
Properties prprts = new Properties();
try {
prprts.load( new FileInputStream( "src/readproperty/test.properties" ));
prprts.list( System.out );
} catch(Exception e) {
e.printStackTrace();
} finally {
}
}
}