import java.io.InputStream;
import java.util.Properties;
public class ResourceLoadTestMain {
private String getResource() {
InputStream is = getClass().getResourceAsStream("/main/resources/applicationResources.properties");
Properties props = new Properties();
try {
props.load(is);
} catch (Exception e) {
// TODO: handle exception
}
return props.get("file.target").toString();
}
public static void main(String argv[]) {
ResourceLoadTestMain main = new ResourceLoadTestMain ();
String[] strArr = main.getResource().split(",");
for(String str : strArr) {
System.out.println(str);
}
System.out.println();
}
}
'자바·JSP' 카테고리의 다른 글
EHCache 설정하기 (0) | 2020.05.31 |
---|---|
리소스 파일 읽기 (0) | 2020.04.20 |
XML 파싱 예제 (0) | 2020.04.11 |
[JAVA] OS별로 CPU정보 가져오기 (0) | 2019.04.05 |
Apache Configuration for Java WebStart (0) | 2018.12.14 |