如何在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();表示文件将始终写入root /mnt/sdcard。是否可以指定某个文件夹来写入文件?

例如: /mnt/sdcard/myapp/downloads


12
还需要记住要在清单中添加权限才能使用。.<uses-permission android:name =“ android.permission.WRITE_EXTERNAL_STORAGE” />
timemirror

Answers:


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 2015年

1
@NeonWarge看这里
mr5

警告:getExternalStorageDirectory()在29 API已弃用
乔什·科雷亚

29

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

使用文件编写器

最后但并非最不重要的是,忘记了,FileOutputStream而改用a 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 2014年

3
@agaFileWriter具有直接编写String的便捷方法,这些方法在上不存在FileOutputStream。如果您不编写文本文件,FileWriter则没有太大帮助。实际上,如果您要编写图像文件,则根本无法使用来完成FileWriter 。当然,如果您确实想要一个不错的文本API ,则将其包装FileOutputStreamPrintStream,您将拥有与System.out
伊恩·麦克劳德

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的文件,其内容与代码中指定的相同。

PS:-您需要以下权限-

<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
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.