从互联网下载文件到我的下载文件夹

download file from internet to my download folder

我在互联网上搜索了我编写的一个应用程序 url 并按下按钮下载该文件,但我没有 SD 卡 我想编辑此代码以将其下载到我的下载文件夹中设备不是 SD 卡我应该做什么

ProgressDialog mProgressDialog;
public void buRun(View view) {

    mProgressDialog = new ProgressDialog(MainActivity .this);
    mProgressDialog.setMessage("file is start downlaoding");
    mProgressDialog.setTitle("File donlaod ");
    mProgressDialog.setIndeterminate(true);
    mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
    mProgressDialog.setCancelable(true);


    final DownloadTask downloadTask = new DownloadTask(MainActivity.this);
    EditText txturl=(EditText)findViewById(R.id.txturl);
    downloadTask.execute(txturl.getText().toString());

    mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener()   {
        @Override
        public void onCancel(DialogInterface dialog) {
            downloadTask.cancel(true);
        }
    });


}

private class DownloadTask extends AsyncTask<String, Integer, String> {

    private Context context;
    private PowerManager.WakeLock mWakeLock;

    public DownloadTask(Context context) {
        this.context = context;
    }

    @Override
    protected String doInBackground(String... sUrl) {
        InputStream input = null;
        OutputStream output = null;
        HttpURLConnection connection = null;
        try {
            URL url = new URL(sUrl[0]);
            connection = (HttpURLConnection) url.openConnection();
            connection.connect();

            if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                return "Server returned HTTP " + connection.getResponseCode()
                        + " " + connection.getResponseMessage();
            }

            int fileLength = connection.getContentLength();

            String[] filen=sUrl[0].split("/");
            // download the file
            input = connection.getInputStream();
            output = new FileOutputStream("/sdcard/Downlaod_" + filen[filen.length-1]);

            byte data[] = new byte[4096];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {

                if (isCancelled()) {
                    input.close();
                    return null;
                }
                total += count;

                if (fileLength > 0) // only if total length is known
                    publishProgress((int) (total * 100 / fileLength));
                output.write(data, 0, count);
            }
        } catch (Exception e) {
            return e.toString();
        } finally {
            try {
                if (output != null)
                    output.close();
                if (input != null)
                    input.close();
            } catch (IOException ignored) {
            }

            if (connection != null)
                connection.disconnect();
        }
        return null;
    }
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
        mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, getClass().getName());
        mWakeLock.acquire();

        mProgressDialog.show();
    }

    @Override
    protected void onProgressUpdate(Integer... progress) {
        super.onProgressUpdate(progress);
        // if we get here, length is known, now set indeterminate to false
        mProgressDialog.setIndeterminate(false);
        mProgressDialog.setMax(100);
        mProgressDialog.setProgress(progress[0]);
    }

    @Override
    protected void onPostExecute(String result) {
        mWakeLock.release();
        mProgressDialog.dismiss();
        if (result != null)
            Toast.makeText(context,"Download error: "+result, Toast.LENGTH_LONG).show();
        else
            Toast.makeText(context,"File downloaded", Toast.LENGTH_SHORT).show();
    }
}

/sdcard 已经好几年没有在 Android 上指向 removable storage 了。 永远不要对路径进行硬编码

要下载到 external storage 上的标准下载位置,请替换:

output = new FileOutputStream("/sdcard/Downlaod_" + filen[filen.length-1]);

与:

output =
  new FileOutputStream(new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS), filen[filen.length-1]));