eclipse plug-in RCP 프로젝트 resources 폴더 추가와 파일 읽기Devel/RCP(Rich Client Platform)2020. 7. 31. 11:28
Table of Contents
plug-in RCP 프로젝트에 resources 폴더를 추가한다.
생성한 resources 폴더를 classpath에 설정한다.
아래의 코드와 같이 추가한 classpath에 추가된 데이터 파일을 읽을 수 있다.
URL url = this.getClass().getClassLoader().getResource("resources");
try {
String resourcesPath = FileLocator.toFileURL(url).getPath() + "/application.conf";
String conf = FileUtils.readFileToString(new File(resourcesPath));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
'Devel > RCP(Rich Client Platform)' 카테고리의 다른 글
eclipse 4 rcp process dialog example (0) | 2020.09.16 |
---|---|
eclipse plug-in RCP 개발 시 외부 라이브러리 추가 후 Unable to create class ... from bundle '420' 에러 처리 (0) | 2015.03.05 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!