我正在开发一个应用程序,我只想从SD卡下载互联网上的PDF文件。
我正在使用android kitkat (4.4.4)
。我在下载文件时遇到错误java.io.FileNotFoundException: /storage/sdcard1/pdf/953.pdf: open failed: EACCES (Permission denied)
。当我使用android (4.2)
时,它可以正常工作。
当我在Environment.getExternalStorageDirectory();
中运行此代码android 4.4.4
时,它会返回内部存储空间。在android 4.2
中,它返回SD卡位置。
这是我的代码。
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ashishkudale.filedownload">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
MainActivity.java
public class MainActivity extends AppCompatActivity {
private Button bt_Download;
private ProgressDialog progressDialog;
public static final int progress_bar_type = 0;
private static String file_url = "http://my_website_url/Data/953.pdf";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bt_Download = (Button) findViewById(R.id.bt_Download);
bt_Download.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
new DownloadFile().execute(file_url);
}
});
}
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case progress_bar_type:
progressDialog = new ProgressDialog(this);
progressDialog.setMessage("Downloading...");
progressDialog.setMax(100);
progressDialog.setCancelable(true);
progressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
progressDialog.setIndeterminate(false);
progressDialog.show();
return progressDialog;
default:
return null;
}
}
class DownloadFile extends AsyncTask<String, String, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(progress_bar_type);
}
@Override
protected String doInBackground(String... fileUrl) {
int count;
try {
URL url = new URL(fileUrl[0]);
URLConnection conection = url.openConnection();
conection.connect();
int lenghtOfFile = conection.getContentLength();
InputStream input = new BufferedInputStream(url.openStream(), 8192);
File file = new File("/storage/sdcard1/pdf","953.pdf");
OutputStream output = new FileOutputStream(file);
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
publishProgress(""+(int)((total*100)/lenghtOfFile));
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}
protected void onProgressUpdate(String... progress) {
progressDialog.setProgress(Integer.parseInt(progress[0]));
}
@Override
protected void onPostExecute(String fileUrl) {
dismissDialog(progress_bar_type);
}
}
}
它被捕获异常。这是我的异常消息。 java.io.FileNotFoundException: /storage/sdcard1/pdf/953.pdf: open failed: EACCES (Permission denied)
我不知道为什么android 4.4.4
及以上不允许我用SD卡写。
我也在互联网上搜索过这么多,但无法得到任何具体的答案。 有没有其他方法可以做到这一点?请告诉我。
答案 0 :(得分:1)
我正在开发一个应用程序,我只想从SD卡下载互联网上的PDF文件。
您在Android 4.4 +上没有removable storage的任意文件系统访问权限。
当我运行此代码时Environment.getExternalStorageDirectory();在android 4.4.4中它返回我的内部存储。
它返回external storage,由Android SDK定义。
在android 4.2中,它返回SD卡位置
也许在你的一个测试设备上它。在绝大多数现代Android设备上,外部存储不是可移动存储。
我不知道为什么android 4.4.4及以上版本不允许我用SD卡写。
您在Android 4.4 +上没有removable storage的任意文件系统访问权限。
还有其他办法吗?
在Android 4.4及更高版本中,使用ACTION_CREATE_DOCUMENT
- the Storage Access Framework的一部分 - 以允许用户决定将内容放在何处。您将获得Uri
。您可以将ContentResolver
和openOutputStream()
用于将内容写入Uri
标识的位置。这也使用户可以灵活地将文件放在用户想要的其他位置,例如Google Drive,Dropbox或应用程序存储提供商管理的任何其他位置。