안드로이드에서 다운로드 폴더에 액세스하는 방법
저는 새로운 안드로이드입니다.다운로드 폴더에 파일을 다운로드 할 수 있는 앱을 만들고 있습니다(다운로드 매니저).에뮬레이터에서 다운로드 폴더에 들어가면 사진이 보입니다.다운로드한 파일의 슬라이드 쇼를 표시하려면 어떻게 하면 해당 폴더에 액세스할 수 있습니까?두 번째로 이 코드에 진행 표시줄을 추가하는 방법:--
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>
첫 번째 질문입니다.
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
(API 8 이후 이용 가능)
이 디렉토리내의 개개의 파일에 액세스 하려면 , File.list() 또는 File.listFiles() 를 사용합니다.다운로드 진행 상황을 보고할 수 있는 것은 알림뿐인 것 같습니다.여기를 참조해 주십시오.
갱신필
getExternalStoragePublicDirectory()
는 권장되지 않습니다.
에서 다운로드 폴더를 가져오려면Fragment
,
val downloadFolder = requireContext().getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)
에서Activity
,
val downloadFolder = getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)
downloadFolder.listFiles()
를 리스트 합니다.File
s.
downloadFolder?.path
다운로드 폴더의 String 경로가 표시됩니다.
업데이트:
최근 Android 버전에서는 스토리지에 대한 직접 파일 시스템 액세스가 제한되었습니다.
context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)
이 디렉토리가 표시됩니다./emulated/0/Android/data/{package}/files/Download
공용 다운로드 폴더를 사용하려면 Android의 Storage Access Framework 문서를 참조하십시오.
manifest.xml 파일에서 이 권한을 설정해야 합니다.
android.permission.WRITE_EXTERNAL_STORAGE
마시멜로를 사용하는 경우 다음 중 하나를 수행해야 합니다.
- 실행 시 요청 권한(사용자는 요청을 허용 또는 거부할 수 있음) 또는 다음 중 하나:
- 사용자는 Settings -> Apps -> {Your App} -> Permissions로 이동하여 스토리지 액세스를 부여해야 합니다.
마시멜로에서는 구글이 허가가 작동하는 방식을 완전히 수정했기 때문입니다.
셸을 사용하는 경우 Download ("s" 없음) 폴더에 대한 파일 경로는 다음과 같습니다.
/storage/emulated/0/Download
다음 권한을 추가해야 합니다.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
다음은 코드의 사용법입니다.
val externalFilesDir = context.getExternalFilesDir(DIRECTORY_DOWNLOADS)
언급URL : https://stackoverflow.com/questions/7908193/how-to-access-downloads-folder-in-android
'source' 카테고리의 다른 글
Python으로 작성된 CSV 파일은 각 행 사이에 공백 행이 있습니다. (0) | 2022.09.17 |
---|---|
삭제하기 전에 확인 메시지를 표시하는 방법 (0) | 2022.09.17 |
통신 패킷을 읽는 동안 MYSQL 오류가 발생했습니다. (0) | 2022.09.17 |
PHP 및 MySQL에서 경고 및 오류 끄기 (0) | 2022.09.16 |
Java 논리 연산자 단락 (0) | 2022.09.16 |