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


83

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


12
또한이 작업을 수행하려면 매니페스트의 권한을 추가하는 것을 기억해야합니다 .. <사용-권한은 안드로이드 : 이름 = "android.permission.WRITE_EXTERNAL_STORAGE"/>
timemirror

답변:


160
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);
...

1
디렉토리와 파일 이름에 모두 소문자를 사용해야합니다.
BeccaP 2013

1
"/ dir1 / dir2"가 무엇을 의미하는지 알 수 있습니까? 이것이 없으면 sdcard 아에 파일을 저장할 수 없습니까?
AndroidOptimist 2013

17
문서에 따르면 : 참고 : 여기에서 "외부"라는 단어로 혼동하지 마십시오. 이 디렉토리는 미디어 / 공유 저장소로 생각하는 것이 좋습니다. 비교적 많은 양의 데이터를 보유 할 수 있고 모든 애플리케이션에서 공유되는 파일 시스템입니다 (권한을 적용하지 않음). 일반적으로이 카드는 SD 카드 이지만 보호 된 내부 저장소와는 별개이며 컴퓨터의 파일 시스템으로 마운트 할 수있는 장치에 내장 저장소로 구현할 수도 있습니다
mr5

1
@NeonWarge 여기 참조
MR5

경고 : getExternalStorageDirectory()API 29에서 더 이상 사용되지 않습니다.
Josh Correia

30

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();

1
내가 읽고있는 책의 저자는 a를 사용하도록 권장합니다 FileOutputStream(글쎄요, 그것은 대안을 다루지 않습니다). 대신를 사용하는 것이 더 나은 이유는 FileWriter무엇입니까? 더 빠르거나 더 안정적이거나 다른 것입니까?
aga

3
@aga FileWriter에는 문자열을 직접 작성하는 편리한 메서드가 있습니다 FileOutputStream. 텍스트 파일을 작성 FileWriter하지 않는 경우별로 도움이되지 않습니다. 당신이 작성하는 경우 사실, 이미지 파일, 그것은 정말로으로 전혀 할 수 없습니다 FileWriter 당신이 경우, 물론 정말 텍스트의 좋은 API를 원하는 당신을 감싸 FileOutputStreamA의 PrintStream당신은 모두 같은 방법이있을 것이다 System.out.
Ian McLaird

1
파일이 성공적으로 작성된 후 왜 내 sdcard에서 파일을 찾을 수 없습니까?
누군가 어딘가에

2

여기에서 답을 찾았습니다-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" />

2
디렉토리 /sdcard/가 항상 sdcard는 아닙니다.
SilverCorvus

Curly에 동의합니다. 내 전화에서 getExternalStorageDirectory 메서드는 sdcard가 아닌 에뮬레이트 된 저장소를 반환합니다.
Spindizzy

-1

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

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

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

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

이 다운로드가 SD 카드가 아닌 다운로드 폴더에 다운로드되지 않습니까?
Josh Correia
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.