我正处于日食中开发PDE的过程中,我遇到了问题。 问题是我想将文件从我的插件文件夹复制到新的活动应用程序文件夹,我不知道我的代码是否可行,因为我不想让我的插件成为一个jar,如果有人,我需要一个有效的解决方案具有。 我找到了这个解决方案copy files with bundle,但它似乎对我不起作用,我正在使用此功能将文件从一个地方复制到另一个地方就够了吗?
private static void copyFileUsingStream(File source, File dest) throws IOException {
InputStream is = null;
OutputStream os = null;
try {
is = new FileInputStream(source);
os = new FileOutputStream(dest);
byte[] buffer = new byte[1024];
int length;
while ((length = is.read(buffer)) > 0) {
os.write(buffer, 0, length);
}
} finally {
is.close();
os.close();
}
}