Bundle bundle = Platform.getBundle(Activator.PLUGIN_ID);
URL entry = bundle.getEntry("/filename");
InputStream is = entry.openStream();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] bb = new byte[4096];
int read = 0;
while ((read = is.read(bb)) > 0) {
baos.write(bb, 0, read);
}
baos.close();
is.close();
'컴퓨터 프로그래밍 > eclipse & JAVA' 카테고리의 다른 글
Eclipse Plug-in 프로젝트 만들기 (0) | 2015.07.09 |
---|---|
Eclipse 에서 Plugin이 인식되지 않는 경우 (0) | 2013.01.17 |
eclipse 에서 tomcat 과 연동하여 jsp 개발하기 (0) | 2010.11.22 |