/*
File path = new File("../workspace/bubblecat/WebContent/WEB-INF/lib");
String realFilePath = path + "/alpha.properties";
Properties props = new Properties();
FileInputStream fis = new FileInputStream(realFilePath);
props.load(new java.io.BufferedInputStream(fis));
String dbSequence = props.getProperty("DB_SEQ");
*/
String realFilePath = (this.getClass().getResource("/").getPath() +
"/resource/property/alpha.properties").substring(1);
Properties props = new Properties();
FileInputStream fis = new FileInputStream(realFilePath);
props.load(new java.io.BufferedInputStream(fis));
String dbSequence = props.getProperty("sequence_branch");
전에 테스트 하느라고 짜 놓은 코드 임시 저장 해 놓아서 추후 사용하려고 업로드.
절대경로 / 상대경로 코드 짜다가 복잡해서 세이브 해 놨던 것으로 추정한다.
댓글
댓글 쓰기