Android에서 다운로드 폴더에 액세스하는 방법은 무엇입니까?


82

저는 새로운 안드로이드입니다. 파일을 다운로드 폴더에 다운로드 할 수있는 앱을 만들고 있습니다 (다운로드 관리자 사용). 에뮬레이터에서 다운로드 폴더로 이동하면 사진을 볼 수 있습니다. 다운로드 한 파일의 슬라이드 쇼를 표시하려면 어떻게 해당 폴더에 액세스 할 수 있습니까? 둘째,이 코드에 진행률 표시 줄을 추가하는 방법 :-

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>

답변:


226

첫 번째 질문은

Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); 

(API 8부터 사용 가능)

이 디렉토리의 개별 파일에 액세스하려면 File.list () 또는 File.listFiles ()를 사용하십시오 . 다운로드 진행률보고는 알림에서만 가능 합니다 . 여기를 참조 하십시오 .


@ slkorolev- 감사 이봐, 난이 코드에 진행 표시 줄을 추가하는 방법, 당신은 내게 도움을 기쁘게 할 수
두식

3
그리고 한 가지 더, 우리가 Environment.getExternalStoragePublicDirectory (Environment.DIRECTORY_DOWNLOADS);에 의해 externa_downloads에 액세스 할 때; 해당 폴더의 각 파일에 추가로 액세스하는 방법은 무엇입니까?
Dhruv

1
DIRECTORY_DOWNLOADS에 글을 쓰려면 WRITE_EXTERNAL_STORAGE의 권한이 필요합니까? 그렇다면 대안이 있습니까?
안드로이드 개발자

@androiddeveloper-예, 해당 권한이 필요합니다. 유일한 대안은 인 텐트를 통해 액세스 할 수있는 "파일 저장"작업을 노출하는 다른 앱 (예 : 파일 관리자)에 의존하는 것입니다. 그러나이를위한 표준 의도는 없습니다.
Ted Hopp 2015

4
getExternalStoragePublicDirectory더 이상 사용되지 않습니다. 여기를
Ashish Emmanuel

26

manifest.xml 파일에서이 권한을 설정해야합니다.

android.permission.WRITE_EXTERNAL_STORAGE

7
API 레벨 23 (Marshmallow)부터는 런타임에 권한도 요청해야합니다. 자세한 내용 은 시스템 권한 작업을 참조하십시오 .
Ted Hopp 2015

또한 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 (Permission denied)에 직면했습니다.
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 문서의 저장소 액세스 프레임 워크를 살펴보세요.
Yogesh Umesh Vaity

9

Marshmallow를 사용하는 경우 다음 중 하나를 수행해야합니다.

  1. 런타임시 권한 요청 (사용자가 요청을 허용하거나 거부 할 수 있음) 또는 :
  2. 사용자는 설정-> 앱-> {내 앱}-> 권한으로 이동 하여 스토리지 액세스 권한부여해야합니다 .

이는 Marshmallow에서 Google이 권한 작동 방식을 완전히 개선했기 때문입니다.


1

다음 권한을 추가해야합니다.

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

그리고 다음은 코드에서의 사용법입니다.

val externalFilesDir = context.getExternalFilesDir(DIRECTORY_DOWNLOADS)

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.