我想将 pdf 文件从应用程序路径(/data/data/package name)复制到 sdcard.for 我已经准备好了,
try {
source = new FileInputStream(sourceFile).getChannel();
destination = new FileOutputStream(destFile).getChannel();
destination.transferFrom(source, 0, source.size());
}
finally {
if(source != null) {
source.close();
}
if(destination != null) {
destination.close();
}
}
它不工作。请帮助。