アプリケーションパス(/ data / data / package name)からsdcard.forにpdfファイルをコピーしたいのですが、
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();
}
}
動作していません。ヘルプをご覧ください。