如何访问android中的downloads文件夹?


82

我是新来的android,我正在开发一款可以将文件下载到downloads文件夹的应用程序(使用“下载管理器”)。如果我转到模拟器中的downloads文件夹,则可以看到图片。因此,如果我想以幻灯片形式显示下载文件的幻灯片,该如何访问该文件夹?其次,如何在此代码中添加进度条:

import java.util.Arrays;

import android.app.Activity;
import android.app.DownloadManager;
import android.app.DownloadManager.Query;
import android.app.DownloadManager.Request;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;

public class Download_managerActivity extends Activity {
     private long quueue_for_url;

     private DownloadManager dm;

        /** Called when the activity is first created. */
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

            BroadcastReceiver receiver = new BroadcastReceiver() {
                @Override
                public void onReceive(Context context, Intent intent) {
                    String action = intent.getAction();

                    if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
                        long downloadId = intent.getLongExtra(
                                DownloadManager.EXTRA_DOWNLOAD_ID, 0);
                        Query query = new Query();
                        query.setFilterById(quueue_for_url);
                        Cursor c = dm.query(query);
                        if (c.moveToFirst()) {
                            int columnIndex = c
                                    .getColumnIndex(DownloadManager.COLUMN_STATUS);
                            if (DownloadManager.STATUS_SUCCESSFUL == c
                                    .getInt(columnIndex)) {

                                ImageView view = (ImageView) findViewById(R.id.imageView1);
                                String uri_String_abcd = c
                                        .getString(c
                                                .getColumnIndex(DownloadManager.COLUMN_LOCAL_URI));
                                view.setImageURI(Uri.parse(uri_String_abcd));

                            }
                        }
                    }
                }
            };

            registerReceiver(receiver, new IntentFilter(
                    DownloadManager.ACTION_DOWNLOAD_COMPLETE));
        }

        public void onClick(View view) {
            dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);

            Request request_for_url = new Request(
                    Uri.parse("http://fc03.deviantart.net/fs14/i/2007/086/9/1/Steve_Jobs_portrait_by_tumb.jpg"));

            Request request_for_url1 = new Request(
                    Uri.parse("http://2.bp.blogspot.com/_q7Rxg4wqDyc/S5ZRVLxVYuI/AAAAAAAAAvU/fQAUZ2XFcp8/s400/katrina-kaif.jpg"));
            Request request_for_url2 = new Request(
                    Uri.parse("http://www.buzzreactor.com/sites/default/files/Bill-Gates1.jpg"));

            quueue_for_url = dm.enqueue(request_for_url);
            quueue_for_url = dm.enqueue(request_for_url1);
            quueue_for_url = dm.enqueue(request_for_url2);

        }

        public void showDownload(View view) {
            Intent i = new Intent();
            //try more options to show downloading , retrieving and complete
            i.setAction(DownloadManager.ACTION_VIEW_DOWNLOADS);
            startActivity(i);
        }
    }

我想添加一个按钮,该按钮执行从下载文件夹中拍摄图片,然后像幻灯片一样显示的功能。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="cmpe235.lab1"
      android:versionCode="1"
      android:versionName="1.0">
    <uses-sdk android:minSdkVersion="9" />

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

    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".Download_managerActivity"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>
</manifest>

main.xml:-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent">


    <Button android:text="Start Download" android:id="@+id/button1"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
         android:layout_gravity="center_vertical|center_horizontal|center" android:textColor="#0000A0" 
         android:typeface="serif" android:onClick="onClick"></Button>

    <Button android:text="View Downloads" android:id="@+id/button2"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
         android:layout_gravity="center_vertical|center_horizontal|center" android:textColor="#0000A0" 
         android:typeface="serif" android:onClick="showDownload"></Button>

    <ImageView android:layout_height="wrap_content" android:id="@+id/imageView1"
        android:src="@drawable/icon" android:layout_width="wrap_content"></ImageView>

</LinearLayout>

Answers:


226

对于第一个问题,请尝试

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); 

(自API 8起可用)

要访问此目录中的单个文件,请使用File.list()File.listFiles()。似乎只能在通知中报告下载进度,请参阅此处


@ slkorolev-谢谢,我该如何在此代码中添加进度栏,请您帮帮我
Dhruv

3
还有一件事,当我们通过Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)访问externa_downloads时;如何进一步访问该文件夹中的每个文件?
Dhruv

1
写入DIRECTORY_DOWNLOADS是否需要WRITE_EXTERNAL_STORAGE的许可?如果是这样,还有其他选择吗?
Android开发人员

@androiddeveloper-是的,您需要该权限。唯一的选择是依赖于其他一些应用程序(例如文件管理器),该应用程序可以公开您可以通过意图访问的“保存文件”操作。但是,没有这样做的标准意图。
泰德·霍普

3
getExternalStoragePublicDirectory不推荐使用。参考此处
Ashish Emmanuel

26

您需要在manifest.xml文件中设置此权限

android.permission.WRITE_EXTERNAL_STORAGE

7
从API级别23(棉花糖)开始,您还需要在运行时请求权限。有关更多信息,请参见使用系统权限
泰德·霍普

同样从API级别19开始,读/写Context.getExternalFilesDir(String)和Context.getExternalCacheDir()返回的应用程序特定目录中的文件不需要此权限。developer.android.com/reference/android/...developer.android.com/reference/android/...。但是我在尝试FileOutputStream(new File(getExternalStoragePublicDirectory(DIRECTORY_DOWNLOADS),lfile))时遇到java.io.FileNotFoundException(权限被拒绝)
Andrew Glukhoff

20

更新

getExternalStoragePublicDirectory()弃用

要从中获取下载文件夹Fragment

val downloadFolder = requireContext().getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)

Activity

val downloadFolder = getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)

downloadFolder.listFiles()将列出Files。

downloadFolder?.path 将为您提供下载文件夹的字符串路径。


7
context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)给我目录,/emulated/0/Android/data/{package}/files/Download但我要公共下载文件夹/emulated/0/Download。可能吗?谢谢。
YunhaoLIU

1
@YunhaoLIU,在最近版本的Android中,对文件系统的直接访问存储已受到限制。查看Android文档的Storage Access Framework。
Yogesh Umesh Vaity

9

如果您使用的是棉花糖,则必须:

  1. 运行时的请求权限(用户将获得允许或拒绝该请求的权限)或:
  2. 用户必须进入设置->应用-> {您的应用}->权限,授予存储访问权限

这是因为在棉花糖中,Google彻底修改了权限的工作方式。


1

您应该添加下一个权限:

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

然后是代码中的用法:

val externalFilesDir = context.getExternalFilesDir(DIRECTORY_DOWNLOADS)

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.