assetsフォルダーに保存されている画像をSDカードに移動したい...
private void copyAssets() {
AssetManager assetManager = getAssets();
String[] files = null;
try {
files = assetManager.list("");
} catch (IOException e) {
Log.e("tag", "Failed to get asset file list.", e);
}
for(String filename : files) {
InputStream in = null;
OutputStream out = null;
try {
in = assetManager.open(filename);
File outFile = new File(getExternalFilesDir(null), filename);
out = new FileOutputStream(outFile);
copyFile(in, out);
in.close();
in = null;
out.flush();
out.close();
out = null;
} catch(IOException e) {
Log.e("tag", "Failed to copy asset file: " + filename, e);
}
}
}
private void copyFile(InputStream in, OutputStream out) throws IOException {
byte[] buffer = new byte[1024];
int read;
while((read = in.read(buffer)) != -1){
out.write(buffer, 0, read);
}
}
これは私が使用した標準コードであり、MANIFEST にも変更を加えました。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
JavaクラスのonCreateメソッドで上記の関数も呼び出しましたが、管理アプリケーションで「SDカードに移動」のオプションが表示されず、ファイルもコピーされません。
代わりにエラーを表示する: 07-11 16:59:29.042: E/tag(4997): java.io.FileNotFoundException: images