次のコードを使用してサーバーからファイルをダウンロードし、SDカードのルートディレクトリに書き込みます。すべて正常に動作します。
package com.downloader;
import Java.io.File;
import Java.io.FileOutputStream;
import Java.io.InputStream;
import Java.net.HttpURLConnection;
import Java.net.URL;
import Android.os.Environment;
import Android.util.Log;
public class Downloader {
public void DownloadFile(String fileURL, String fileName) {
try {
File root = Environment.getExternalStorageDirectory();
URL u = new URL(fileURL);
HttpURLConnection c = (HttpURLConnection) u.openConnection();
c.setRequestMethod("GET");
c.setDoOutput(true);
c.connect();
FileOutputStream f = new FileOutputStream(new File(root, fileName));
InputStream in = c.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = in.read(buffer)) > 0) {
f.write(buffer, 0, len1);
}
f.close();
} catch (Exception e) {
Log.d("Downloader", e.getMessage());
}
}
}
ただし、Environment.getExternalStorageDirectory();
を使用すると、ファイルは常にルート/mnt/sdcard
に書き込まれます。ファイルを書き込む特定のフォルダーを指定することは可能ですか?
例:/mnt/sdcard/myapp/downloads
乾杯
イフ
File sdCard = Environment.getExternalStorageDirectory();
File dir = new File (sdCard.getAbsolutePath() + "/dir1/dir2");
dir.mkdirs();
File file = new File(dir, "filename");
FileOutputStream f = new FileOutputStream(file);
...
this WRITE_EXTERNAL_STORAGEパーミッション をアプリケーションマニフェストに追加します。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:Android="http://schemas.Android.com/apk/res/Android"
package="your.company.package"
Android:versionCode="1"
Android:versionName="0.1">
<application Android:icon="@drawable/icon" Android:label="@string/app_name">
<!-- ... -->
</application>
<uses-sdk Android:minSdkVersion="7" />
<uses-permission Android:name="Android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>
最初に可用性を常に確認する必要があります。 外部ストレージの公式Androidドキュメント からの抜粋。
boolean mExternalStorageAvailable = false;
boolean mExternalStorageWriteable = false;
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
// We can read and write the media
mExternalStorageAvailable = mExternalStorageWriteable = true;
} else if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) {
// We can only read the media
mExternalStorageAvailable = true;
mExternalStorageWriteable = false;
} else {
// Something else is wrong. It may be one of many other states, but all we need
// to know is we can neither read nor write
mExternalStorageAvailable = mExternalStorageWriteable = false;
}
最後にFileOutputStream
を忘れずに、代わりにFileWriter
を使用します。そのクラス形式の詳細 FileWriter javadoc 。ここにエラー処理を追加して、ユーザーに通知することをお勧めします。
// get external storage file reference
FileWriter writer = new FileWriter(getExternalStorageDirectory());
// Writes the content to the file
writer.write("This\n is\n an\n example\n");
writer.flush();
writer.close();
ここで答えを見つけました- http://mytechead.wordpress.com/2014/01/30/Android-create-a-file-and-write-to-external-storage/
それは言います、
/**
* Method to check if user has permissions to write on external storage or not
*/
public static boolean canWriteOnExternalStorage() {
// get the state of your external storage
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
// if storage is mounted return true
Log.v("sTag", "Yes, can write to external storage.");
return true;
}
return false;
}
次に、このコードを使用して外部ストレージに実際に書き込みます。
// get the path to sdcard
File sdcard = Environment.getExternalStorageDirectory();
// to this path add a new directory path
File dir = new File(sdcard.getAbsolutePath() + "/your-dir-name/");
// create this directory if not already created
dir.mkdir();
// create the file in which we will write the contents
File file = new File(dir, "My-File-Name.txt");
FileOutputStream os = outStream = new FileOutputStream(file);
String data = "This is the content of my file";
os.write(data.getBytes());
os.close();
そしてこれがそれです。/sdcard/your-dir-name /フォルダーにアクセスすると、コードで指定された内容のMy-File-Name.txtという名前のファイルが表示されます。
PS:-次の許可が必要です-
<uses-permission Android:name="Android.permission.WRITE_EXTERNAL_STORAGE" />