컴퓨터 프로그래밍/eclipse & JAVA
[Eclipse Plugin] 플러그인에 포함된 파일 열기
orange code
2013. 5. 14. 17:42
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();