0
私は現在アンドロイドアプリケーションのルートディレクトリから内容を読み取ろうとしています。Android:ルートアプリケーションフォルダから内容を読み込みます。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
と私のコードのために:下に述べたように私は私のマニフェストにすべての権限を実装しました
public void copytoFileDestination(){
//get the root path of the application.
String rootPath = getFilesDir().getPath() + "/images/";
File destination = new File(rootPath);
String imgPath = "/storage/emulated/0/Pictures/somefilename.jpg"
File source = new File(imgPath);
try{
//copy source location to destination directory
copyFile(source, destination);
//display all the contents of rootPath! How? Attempt:
File[] files = destination.listFiles();
for (int i = 0; i < files.length; i++)
{
Log.d("Files", "FileName:" + files[i].getName());
}
} catch (IOException e) {
e.printStackTrace();
}
}
private void copyFile(File sourceFile, File destFile) throws IOException {
if (!sourceFile.exists()) {
return;
}
FileChannel source = null;
FileChannel destination = null;
source = new FileInputStream(sourceFile).getChannel();
destination = new FileOutputStream(destFile).getChannel();
if (destination != null && source != null) {
destination.transferFrom(source, 0, source.size());
Log.d("copy file", "complete");
}
if (source != null) {
source.close();
}
if (destination != null) {
destination.close();
}
}
I先にソース(画像のパス)からわずかたいコピー(ルートパス)宛先の内容を表示します。しかし、files.lengthにnull例外があります。つまり、コピー先のファイルにはファイルがありません。私は目的地のディレクトリから読むことができなかったのでそれはありますか?
誰かが私を啓発できますか?ところで
:
- destination.exist()が真です。
- destination.canRead()がtrueです。
Do help!