[java] Android에서 SD 카드의 폴더에 어떻게 쓰나요?

다음 코드를 사용하여 내 서버에서 파일을 다운로드 한 다음 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);
...


답변

Android 매니페스트에 권한 추가

이 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;
}

파일 작성기 사용

마침내 잊고 대신 FileOutputStreama를 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라는 파일이 표시됩니다.

추신 :-다음 권한이 필요합니다-

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


답변

SDCard의 음악 폴더 또는 다운로드 할 파일을 다운로드하려면

File downlodDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);// or DIRECTORY_PICTURES

그리고 매니페스트에 이러한 권한을 추가하는 것을 잊지 마십시오

 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />


답변