简体   繁体   English

无法将文件下载到SD卡

[英]Downloading a file to sd card not working

Wondering if anyone has any insight as to why this isn't working.First of all the code goes and gets a link to a pdf on a website,and the link to the pdf is definitely correct,but it doesn't seem to be downloading it onto my sd card.Not sure If it is done with the way I am running it from the android studio on my device?A link is just a container object I have the URL to the pdf with some methods for giving just the file name,the whole URL,etc 不知道是否有人对此有任何见解。首先,代码会在网站上获得指向pdf的链接,并且pdf的链接肯定是正确的,但似乎不正确。将其下载到我的sd卡上。不确定是否通过设备上的android studio运行它的方式完成了吗?链接只是一个容器对象,我有pdf的网址,并提供了一些仅提供文件的方法名称,整个URL等

public class MainActivity extends AppCompatActivity {



@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button btnFetchData = (Button) findViewById(R.id.buttonTest);
    btnFetchData.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            new FetchWebsiteData().execute();


        }
    });

}
private class FetchWebsiteData extends AsyncTask<Void, Void, Void> {

    private String pdfLink = "didnt work";
    private Link foundLink = new Link("");
    String fileLocation= "";

    @Override
    protected void onPreExecute() {
        super.onPreExecute();


    }

    @Override
    protected Void doInBackground(Void... params) {
        int count;
        try {

            Document doc = Jsoup.connect("http://www.dunnesstores.com/offer20/food-wine/fcp-category/home").userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0").get();
            //Elements links = doc.select("a[title=\"Download offers in store\"]");
            Element links = doc.select("a[title=\"Download offers in store\"]").first();
            foundLink = new Link(links.attr("href"));

            URL url = new URL(foundLink.getUrlWithDomain());

            //create the new connection
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();

            //set up some things on the connection
            urlConnection.setRequestMethod("GET");
            urlConnection.setDoOutput(true);

            //and connect!
            urlConnection.connect();

            //set the path where we want to save the file
            //in this case, going to save it on the root directory of the
            //sd card.
            File SDCardRoot = Environment.getExternalStorageDirectory();
            //create a new file, specifying the path, and the filename
            //which we want to save the file as.
            File file = new File(SDCardRoot,foundLink.getFileNameOnly());
            fileLocation = file.toString();
            //this will be used to write the downloaded data into the file we created
            FileOutputStream fileOutput = new FileOutputStream(file);

            //this will be used in reading the data from the internet
            InputStream inputStream = urlConnection.getInputStream();

            //this is the total size of the file
            int totalSize = urlConnection.getContentLength();
            //variable to store total downloaded bytes
            int downloadedSize = 0;

            //create a buffer...
            byte[] buffer = new byte[1024];
            int bufferLength = 0; //used to store a temporary size of the buffer

            //now, read through the input buffer and write the contents to the file
            while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
                //add the data in the buffer to the file in the file output stream (the file on the sd card
                fileOutput.write(buffer, 0, bufferLength);
                //add up the size so we know how much is downloaded
                downloadedSize += bufferLength;
                //this is where you would do something to report the progress, like this maybe


            }
            //close the output stream when done
            fileOutput.close();





        } catch (IOException e) {
            //e.printStackTrace();
        }
        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        TextView txttitle = (TextView) findViewById(R.id.resultTextView);
        //testing the file location
        txttitle.setText(fileLocation);

    }

}

The permissions in my manifest 我清单中的权限

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

EDIT:Found the following in the exception stack trace which should help java.io.FileNotFoundException: /storage/emulated/0/29-11-16.pdf: open failed: EACCES (Permission denied) 编辑:在异常堆栈跟踪中找到了以下内容,应该可以帮助java.io.FileNotFoundException:/storage/emulated/0/29-11-16.pdf:打开失败:EACCES(权限被拒绝)

With Android 6+ you need to ask for run time permissions. 使用Android 6+时,您需要询问运行时权限。 Here is an example 这是一个例子

private void checkPermission() {
    final String permissionWrite = Manifest.permission.WRITE_EXTERNAL_STORAGE;
    final String permissionRead = Manifest.permission.READ_EXTERNAL_STORAGE;

    if (ContextCompat.checkSelfPermission(getActivity(), permissionWrite) != PermissionChecker.PERMISSION_GRANTED
            || ContextCompat.checkSelfPermission(getActivity(), permissionRead) != PermissionChecker.PERMISSION_GRANTED) {
        requestPermissions(new String[]{permissionWrite, permissionRead}, 0);
        return;
    }
    new FetchWebsiteData().execute();
}

@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
    if (requestCode != 0) return;
    if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED
            && grantResults[1] == PackageManager.PERMISSION_GRANTED) {
        new FetchWebsiteData().execute();
    } else {
       // well no permission granted
    }
}

And use it like this 像这样使用

btnFetchData.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {
        checkPermission();
    }
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM