Android के साथ एक फ़ाइल डाउनलोड करें, और एक ProgressDialog में प्रगति दिखा रहा है


1046

मैं एक साधारण एप्लिकेशन लिखने की कोशिश कर रहा हूं जो अपडेट हो जाए। इसके लिए मुझे एक साधारण फ़ंक्शन की आवश्यकता है जो एक फ़ाइल डाउनलोड कर सके और वर्तमान प्रगति को दिखा सकेProgressDialog । मुझे पता है कि कैसे करना है ProgressDialog, लेकिन मुझे यकीन नहीं है कि वर्तमान प्रगति को कैसे प्रदर्शित किया जाए और पहली जगह में फ़ाइल कैसे डाउनलोड की जाए।


2
मुझे उम्मीद है कि नीचे दी गई लिंक आपकी मदद कर सकती है ... androidhive.info/2012/04/…
गणेश कातिकार


stackoverflow.com/a/43069239/3879214 इस उत्तर को जांचें
Anu Martin

जवाबों:


1873

फ़ाइलों को डाउनलोड करने के कई तरीके हैं। निम्नलिखित मैं सबसे सामान्य तरीके पोस्ट करूंगा; यह आपको तय करना है कि आपके ऐप के लिए कौन सा तरीका बेहतर है।

1. AsyncTaskएक डायलॉग में डाउनलोड की प्रगति का उपयोग करें और दिखाएं

यह विधि आपको कुछ पृष्ठभूमि प्रक्रियाओं को निष्पादित करने और एक ही समय में यूआई को अपडेट करने की अनुमति देगा (इस मामले में, हम एक प्रगति बार अपडेट करेंगे)।

आयात:

import android.os.PowerManager;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.FileOutputStream;
import java.net.HttpURLConnection;

यह एक उदाहरण कोड है:

// declare the dialog as a member field of your activity
ProgressDialog mProgressDialog;

// instantiate it within the onCreate method
mProgressDialog = new ProgressDialog(YourActivity.this);
mProgressDialog.setMessage("A message");
mProgressDialog.setIndeterminate(true);
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
mProgressDialog.setCancelable(true);

// execute this when the downloader must be fired
final DownloadTask downloadTask = new DownloadTask(YourActivity.this);
downloadTask.execute("the url to the file you want to download");

mProgressDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {

    @Override
    public void onCancel(DialogInterface dialog) {
        downloadTask.cancel(true); //cancel the task
    }
});

इस AsyncTaskतरह दिखेगा:

// usually, subclasses of AsyncTask are declared inside the activity class.
// that way, you can easily modify the UI thread from here
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();

            // expect HTTP 200 OK, so we don't mistakenly save error report
            // instead of the file
            if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                return "Server returned HTTP " + connection.getResponseCode()
                        + " " + connection.getResponseMessage();
            }

            // this will be useful to display download percentage
            // might be -1: server did not report the length
            int fileLength = connection.getContentLength();

            // download the file
            input = connection.getInputStream();
            output = new FileOutputStream("/sdcard/file_name.extension");

            byte data[] = new byte[4096];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {
                // allow canceling with back button
                if (isCancelled()) {
                    input.close();
                    return null;
                }
                total += count;
                // publishing the progress....
                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;
    }

उपरोक्त विधि ( doInBackground) हमेशा पृष्ठभूमि थ्रेड पर चलती है। आपको कोई UI कार्य नहीं करना चाहिए। दूसरी ओर, onProgressUpdateऔर onPreExecuteUI थ्रेड पर चलते हैं, इसलिए वहां आप प्रगति बार को बदल सकते हैं:

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        // take CPU lock to prevent CPU from going off if the user 
        // presses the power button during download
        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();
    }

इसे चलाने के लिए, आपको WAKE_LOCK की अनुमति चाहिए।

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

2. डाउनलोड सेवा

यहां बड़ा सवाल यह है कि मैं अपनी गतिविधि को सेवा से कैसे अपडेट करूं? । अगले उदाहरण में हम दो वर्गों का उपयोग करने जा रहे हैं जिनके बारे में आप शायद नहीं जानते होंगे: ResultReceiverऔर IntentServiceResultReceiverवह है जो हमें एक सेवा से हमारे थ्रेड को अपडेट करने की अनुमति देगा; IntentServiceएक उपवर्ग है, Serviceजो वहां से पृष्ठभूमि का काम करने के लिए एक धागा पैदा करता है (आपको पता होना चाहिए कि Serviceवास्तव में आपके ऐप के उसी धागे में एक रन है; जब आप विस्तार करते हैं Service, तो आपको सीपीयू अवरुद्ध संचालन को चलाने के लिए मैन्युअल रूप से नए थ्रेड स्पॉन करना होगा)।

डाउनलोड सेवा इस तरह देख सकते हैं:

public class DownloadService extends IntentService {
    public static final int UPDATE_PROGRESS = 8344;

    public DownloadService() {
        super("DownloadService");
    }
    @Override
    protected void onHandleIntent(Intent intent) {

        String urlToDownload = intent.getStringExtra("url");
        ResultReceiver receiver = (ResultReceiver) intent.getParcelableExtra("receiver");
        try {

            //create url and connect
            URL url = new URL(urlToDownload);
            URLConnection connection = url.openConnection();
            connection.connect();

            // this will be useful so that you can show a typical 0-100% progress bar
            int fileLength = connection.getContentLength();

            // download the file
            InputStream input = new BufferedInputStream(connection.getInputStream());

            String path = "/sdcard/BarcodeScanner-debug.apk" ;
            OutputStream output = new FileOutputStream(path);

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

                // publishing the progress....
                Bundle resultData = new Bundle();
                resultData.putInt("progress" ,(int) (total * 100 / fileLength));
                receiver.send(UPDATE_PROGRESS, resultData);
                output.write(data, 0, count);
            }

            // close streams 
            output.flush();
            output.close();
            input.close();

        } catch (IOException e) {
            e.printStackTrace();
        }

        Bundle resultData = new Bundle();
        resultData.putInt("progress" ,100);

        receiver.send(UPDATE_PROGRESS, resultData);
    }
}

अपने मेनिफेस्ट में सेवा जोड़ें:

<service android:name=".DownloadService"/>

और गतिविधि इस तरह दिखाई देगी:

// initialize the progress dialog like in the first example

// this is how you fire the downloader
mProgressDialog.show();
Intent intent = new Intent(this, DownloadService.class);
intent.putExtra("url", "url of the file to download");
intent.putExtra("receiver", new DownloadReceiver(new Handler()));
startService(intent);

यहाँ ResultReceiverखेलने के लिए आता है:

private class DownloadReceiver extends ResultReceiver{

    public DownloadReceiver(Handler handler) {
        super(handler);
    }

    @Override
    protected void onReceiveResult(int resultCode, Bundle resultData) {

        super.onReceiveResult(resultCode, resultData);

        if (resultCode == DownloadService.UPDATE_PROGRESS) {

            int progress = resultData.getInt("progress"); //get the progress
            dialog.setProgress(progress);

            if (progress == 100) {
                dialog.dismiss();
            }
        }
    }
}

2.1 ग्राउंडी लाइब्रेरी का उपयोग करें

ग्राउंडी एक पुस्तकालय है जो मूल रूप से आपको पृष्ठभूमि सेवा में कोड के टुकड़े चलाने में मदद करता है, और यहResultReceiverऊपर दिखाए गए अवधारणापर आधारितहै। इस लाइब्रेरी कोफिलहाल हटा दिया गया है। इसतरह पूरा कोड दिखेगा:

गतिविधि जहां आप संवाद दिखा रहे हैं ...

public class MainActivity extends Activity {

    private ProgressDialog mProgressDialog;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        findViewById(R.id.btn_download).setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                String url = ((EditText) findViewById(R.id.edit_url)).getText().toString().trim();
                Bundle extras = new Bundler().add(DownloadTask.PARAM_URL, url).build();
                Groundy.create(DownloadExample.this, DownloadTask.class)
                        .receiver(mReceiver)
                        .params(extras)
                        .queue();

                mProgressDialog = new ProgressDialog(MainActivity.this);
                mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
                mProgressDialog.setCancelable(false);
                mProgressDialog.show();
            }
        });
    }

    private ResultReceiver mReceiver = new ResultReceiver(new Handler()) {
        @Override
        protected void onReceiveResult(int resultCode, Bundle resultData) {
            super.onReceiveResult(resultCode, resultData);
            switch (resultCode) {
                case Groundy.STATUS_PROGRESS:
                    mProgressDialog.setProgress(resultData.getInt(Groundy.KEY_PROGRESS));
                    break;
                case Groundy.STATUS_FINISHED:
                    Toast.makeText(DownloadExample.this, R.string.file_downloaded, Toast.LENGTH_LONG);
                    mProgressDialog.dismiss();
                    break;
                case Groundy.STATUS_ERROR:
                    Toast.makeText(DownloadExample.this, resultData.getString(Groundy.KEY_ERROR), Toast.LENGTH_LONG).show();
                    mProgressDialog.dismiss();
                    break;
            }
        }
    };
}

एक GroundyTaskकार्यान्वयन के द्वारा प्रयोग किया Groundy फ़ाइल डाउनलोड करने और प्रगति दिखाने के लिए:

public class DownloadTask extends GroundyTask {    
    public static final String PARAM_URL = "com.groundy.sample.param.url";

    @Override
    protected boolean doInBackground() {
        try {
            String url = getParameters().getString(PARAM_URL);
            File dest = new File(getContext().getFilesDir(), new File(url).getName());
            DownloadUtils.downloadFile(getContext(), url, dest, DownloadUtils.getDownloadListenerForTask(this));
            return true;
        } catch (Exception pokemon) {
            return false;
        }
    }
}

और इसे प्रकट में जोड़ें:

<service android:name="com.codeslap.groundy.GroundyService"/>

मुझे लगता है कि यह आसान नहीं हो सकता। बस जीथब से नवीनतम जार पकड़ो और आप जाने के लिए तैयार हैं। ध्यान रखें कि ग्राउंडी का मुख्य उद्देश्य पृष्ठभूमि सेवा में बाहरी REST एपिस को कॉल करना और परिणाम को आसानी से UI पर पोस्ट करना है। यदि आप अपने ऐप में ऐसा कुछ कर रहे हैं, तो यह वास्तव में उपयोगी हो सकता है।

२.२ https://github.com/koush/ion का उपयोग करें

3. DownloadManagerकक्षा का उपयोग करें ( GingerBreadऔर केवल नया)

जिंजरब्रेड एक नई सुविधा लाया DownloadManager, जो आपको आसानी से फ़ाइलों को डाउनलोड करने और सिस्टम को थ्रेड्स, स्ट्रीम इत्यादि को संभालने के कठिन काम को सौंपने की अनुमति देता है।

सबसे पहले, आइए एक उपयोगिता विधि देखें:

/**
 * @param context used to check the device version and DownloadManager information
 * @return true if the download manager is available
 */
public static boolean isDownloadManagerAvailable(Context context) {

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) {
        return true;
    }
    return false;
}

विधि का नाम यह सब समझाता है। एक बार जब आप सुनिश्चित हैं कि DownloadManagerउपलब्ध है, आप कुछ इस तरह से कर सकते हैं:

String url = "url you want to download";
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setDescription("Some descrition");
request.setTitle("Some title");
// in order for this if to run, you must use the android 3.2 to compile your app
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
    request.allowScanningByMediaScanner();
    request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
}
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, "name-of-the-file.ext");

// get download service and enqueue file
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);

सूचना पट्टी में डाउनलोड प्रगति दिखाई देगी।

अंतिम विचार

पहले और दूसरे तरीके सिर्फ हिमशैल के टिप हैं। अगर आप चाहते हैं कि आपका ऐप मजबूत हो, तो बहुत सारी बातें आपको ध्यान में रखनी होंगी। यहाँ एक संक्षिप्त सूची है:

  • आपको यह देखना होगा कि उपयोगकर्ता के पास इंटरनेट कनेक्शन उपलब्ध है या नहीं
  • सुनिश्चित करें कि आपके पास सही अनुमति ( INTERNETऔर WRITE_EXTERNAL_STORAGE) है; भी ACCESS_NETWORK_STATEआप इंटरनेट उपलब्धता देखने के लिए चाहते हैं।
  • सुनिश्चित करें कि आप जिस निर्देशिका को डाउनलोड करने जा रहे हैं, वह फाइल मौजूद है और लिखने की अनुमति है।
  • यदि डाउनलोड बहुत बड़ा है, तो आप पिछले प्रयासों के विफल होने पर डाउनलोड को फिर से शुरू करने का तरीका लागू कर सकते हैं।
  • यदि आप उन्हें डाउनलोड को बाधित करने की अनुमति देते हैं तो उपयोगकर्ता आभारी होंगे।

जब तक आपको डाउनलोड प्रक्रिया के विस्तृत नियंत्रण की आवश्यकता न हो, तब DownloadManager(3) का उपयोग करने पर विचार करें क्योंकि यह पहले से ही ऊपर सूचीबद्ध अधिकांश वस्तुओं को संभालता है।

लेकिन यह भी विचार करें कि आपकी ज़रूरतें बदल सकती हैं। उदाहरण के लिए, DownloadManager कोई प्रतिक्रिया कैशिंग नहीं है । यह नेत्रहीन एक ही बड़ी फ़ाइल को कई बार डाउनलोड करेगा। इस तथ्य के बाद इसे ठीक करने का कोई आसान तरीका नहीं है। जहां यदि आप एक मूल HttpURLConnection(1, 2) से शुरू करते हैं , तो आपको केवल एक जोड़ने की जरूरत है HttpResponseCache। तो बुनियादी, मानक उपकरण सीखने का प्रारंभिक प्रयास एक अच्छा निवेश हो सकता है।

इस वर्ग को एपीआई स्तर 26 में पदावनत किया गया था। प्रोग्रेसडायलॉग एक मोडल संवाद है, जो उपयोगकर्ता को ऐप के साथ बातचीत करने से रोकता है। इस वर्ग का उपयोग करने के बजाय, आपको प्रगति सूचक जैसे प्रगति संकेतक का उपयोग करना चाहिए, जिसे आपके ऐप के यूआई में एम्बेड किया जा सकता है। वैकल्पिक रूप से, आप कार्य की प्रगति के उपयोगकर्ता को सूचित करने के लिए एक अधिसूचना का उपयोग कर सकते हैं। अधिक जानकारी के लिए लिंक


8
DownloadManager OS का हिस्सा है, जिसका अर्थ है कि यह हमेशा GB + में उपलब्ध होगा और इसे अनइंस्टॉल नहीं किया जा सकता है।
क्रिस्टियन

17
क्रिस्टियन के जवाब में एक समस्या है। क्योंकि " 1. कोड का उपयोग करें। AsyncTask का उपयोग करें और एक डायलॉग में डाउनलोड प्रगति दिखाएं " कनेक्शन करता है। कनेक्ट (); फिर InputStream इनपुट = नया बफ़रड इनपुटस्ट्रीम (url.openStream ()); कोड सर्वर से 2 कनेक्शन बनाता है। मैंने इनपुटस्ट्रीम इनपुट = new BufferedInputStream (कनेक्शन.getInputStream ()) के अनुसार कोड को अपडेट करके इस व्यवहार को बदलने में कामयाबी हासिल की है;
nLL

99
काश Android प्रलेखन यह संक्षिप्त था।
लो मोर्डा

12
के बजाय close()धाराओं ( inputऔर output) का सुझाव दिया finallyजाता है try, अन्यथा यदि कोई अपवाद पहले फेंक दिया जाता है close(), तो आपने चारों ओर लटकी धाराओं को अशुद्ध कर दिया है ।
पैग

32
इसके बजाय हार्डकोड / sdcard/उपयोग Environment.getExternalStorageDirectory()न करें।
निमा जी

106

यदि आप इंटरनेट से सामान डाउनलोड करने जा रहे हैं तो अपनी मैनिफ़ेस्ट फ़ाइल में अनुमतियां जोड़ना न भूलें!

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.helloandroid"
    android:versionCode="1"
    android:versionName="1.0">

        <uses-sdk android:minSdkVersion="10" />

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

        <application 
            android:icon="@drawable/icon" 
            android:label="@string/app_name" 
            android:debuggable="true">

        </application>

</manifest>

1
मुझे पूरा यकीन है कि आपको READ_PHONE_STATE की आवश्यकता नहीं है और आपको निश्चित रूप से WRITE_EXTERNAL_STORAGE की आवश्यकता नहीं है; यह एक खतरनाक अनुमति है जिसे स्टोरेज एक्सेस फ्रेमवर्क का उपयोग करके टाला जा सकता है।
मोनिका

32

हाँ उपरोक्त कोड .लेकिन काम करेंगे आप अपने अद्यतन कर रहे हैं, तो progressbarमें onProgressUpdateकी Asynctask और तुम वापस बटन दबाएँ या समाप्त अपनी गतिविधि AsyncTaskअपने यूआई .और के साथ अपने ट्रैक खो देता है जब आप अपनी गतिविधि के लिए वापस जाना है, भले ही डाउनलोड पृष्ठभूमि में चल रहा आप देखेंगे प्रगति पट्टी पर कोई अद्यतन नहीं। तो टाइमर कार्य के साथ OnResume()एक थ्रेड को चलाने की कोशिश करें runOnUIThreadजो कि रनिंग पृष्ठभूमि progressbarसे अपडेट होने वाले मानों के साथ उर को अपडेट करता है AsyncTask

private void updateProgressBar(){
    Runnable runnable = new updateProgress();
    background = new Thread(runnable);
    background.start();
}

public class updateProgress implements Runnable {
    public void run() {
        while(Thread.currentThread()==background)
            //while (!Thread.currentThread().isInterrupted()) {
            try {
                Thread.sleep(1000); 
                Message msg = new Message();
                progress = getProgressPercentage();        
                handler.sendMessage(msg);
            } catch (InterruptedException e) {
                Thread.currentThread().interrupt();
            } catch (Exception e) {
        }
    }
}

private Handler handler = new Handler(){
    @Override
    public void handleMessage(Message msg) {
        progress.setProgress(msg.what);
    }
};

जब उर गतिविधि दिखाई न दे तो धागे को नष्ट करना न भूलें ।

private void destroyRunningThreads() {
    if (background != null) {
        background.interrupt();
        background=null;
    }
}

1
यह वास्तव में मेरी समस्या है। क्या आप बता सकते हैं कि प्रोग्रेसबार को अपडेट करने के लिए टाइमर का काम कैसे किया जाए? पीछे चल रहे AsyncTask से अपडेट करने के लिए मान कैसे प्राप्त करें
user1417127

2
okk asynctask से अपने मानों को अद्यतन करने के लिए एक वैश्विक या स्थैतिक चर लें ... या u इसे सुरक्षित साइड के लिए DataBase में सम्मिलित कर सकते हैं..तो उस अनुप्रयोग को बंद करना अभ्यस्त नहीं होगा..और जब आप उस गतिविधि को पुनः आरंभ करते हैं जहाँ आप ur को अद्यतन करना चाहते हैं UI यूआई थ्रेड चलाता है। उदाहरण के नीचे
शीतल जूल

यूआई का ताजा संदर्भ होना चाहिए..मेरे मामले में नवजात प्रोग्रेसबार को लाइक करें
शीतल

@sheetal, लेकिन यह आपके कोड के बिना ठीक काम करता है! क्यों?! मेरा डिवाइस एंड्रॉइड 4.0.4 के साथ एक्सपीरिया पी है। मैंने एक स्थिर बूलियन चर को परिभाषित किया है जो onPreExecute इसे सही पर सेट करता है और onPostExecute इसे गलत पर सेट करता है। यह दिखाता है कि हम डाउनलोड कर रहे हैं या नहीं, इसलिए हम जांच सकते हैं कि चर सही के बराबर है या नहीं, पिछले प्रगति पट्टी संवाद दिखाएं।
बेहजाद

@sheetal आपका कोड थोड़ा अस्पष्ट है, क्या आप मुझे कुछ सलाह दे सकते हैं?
unसुन

17

मैं आपको अपने प्रोजेक्ट Netroid का उपयोग करने की सलाह दूंगा , यह वॉली पर आधारित है । मैंने इसमें कुछ सुविधाएँ जोड़ी हैं जैसे कि मल्टी-इवेंट कॉलबैक, फ़ाइल डाउनलोड प्रबंधन। इससे कुछ मदद मिल सकती है।


2
क्या यह एकाधिक फ़ाइल डाउनलोड का समर्थन करता है? मैं एक ऐसे प्रोजेक्ट पर काम कर रहा हूं, जो उपयोगकर्ता को डाउनलोड करने की अनुमति देता है। एक विशिष्ट समय (उदाहरण के लिए 12 बजे), सेवा उस सभी लिंक को डाउनलोड करेगी जो उपयोगकर्ता ने पहले चुना था। मेरा मतलब है कि मुझे जिस सेवा की ज़रूरत है वह डाउनलोड लिंक को कतार में रखने में सक्षम है, और फिर उनमें से सभी को डाउनलोड करें (एक या एक समानांतर, उपयोगकर्ता पर निर्भर करें)। धन्यवाद
होआंग Trinh

@piavgh हाँ, आप सभी को संतुष्ट करना चाहते थे, आप मेरा नमूना डाउनलोड कर सकते हैं एपीके, इसमें एक फ़ाइल डाउनलोड प्रबंधन डेमो शामिल था।
विन्ससट्लिंग

महान पुस्तकालय! अच्छा काम करता है, हालाँकि मुझे HTTPS Url के कंटेंट को डाउनलोड करने में समस्या आ रही है, हालाँकि कोई भी व्यक्ति अपना SSLSocketFactoryऐड सेट कर सकता HostnameVerifierहै, यह संभव नहीं है और मुझे इस तरह के वेरिफायर की आवश्यकता है। उससे संबंधित एक मुद्दा उठाया ।
डार्ककैग्नस

वॉली के लिए लिंक -> नॉट-फाउंड
रमित पटेल

14

मैंने उसी संदर्भ में AsyncTaskसृजन को संभालने के लिए कक्षा को संशोधित किया progressDialogहै। मुझे लगता है कि निम्नलिखित कोड अधिक पुन: प्रयोज्य होगा। (यह किसी भी गतिविधि से बस पास संदर्भ, लक्ष्य फ़ाइल, संवाद संदेश कहा जा सकता है)

public static class DownloadTask extends AsyncTask<String, Integer, String> {
    private ProgressDialog mPDialog;
    private Context mContext;
    private PowerManager.WakeLock mWakeLock;
    private File mTargetFile;
    //Constructor parameters :
    // @context (current Activity)
    // @targetFile (File object to write,it will be overwritten if exist)
    // @dialogMessage (message of the ProgresDialog)
    public DownloadTask(Context context,File targetFile,String dialogMessage) {
        this.mContext = context;
        this.mTargetFile = targetFile;
        mPDialog = new ProgressDialog(context);

        mPDialog.setMessage(dialogMessage);
        mPDialog.setIndeterminate(true);
        mPDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        mPDialog.setCancelable(true);
        // reference to instance to use inside listener
        final DownloadTask me = this;
        mPDialog.setOnCancelListener(new DialogInterface.OnCancelListener() {
            @Override
            public void onCancel(DialogInterface dialog) {
                me.cancel(true);
            }
        });
        Log.i("DownloadTask","Constructor done");
    }

    @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();

            // expect HTTP 200 OK, so we don't mistakenly save error report
            // instead of the file
            if (connection.getResponseCode() != HttpURLConnection.HTTP_OK) {
                return "Server returned HTTP " + connection.getResponseCode()
                        + " " + connection.getResponseMessage();
            }
            Log.i("DownloadTask","Response " + connection.getResponseCode());

            // this will be useful to display download percentage
            // might be -1: server did not report the length
            int fileLength = connection.getContentLength();

            // download the file
            input = connection.getInputStream();
            output = new FileOutputStream(mTargetFile,false);

            byte data[] = new byte[4096];
            long total = 0;
            int count;
            while ((count = input.read(data)) != -1) {
                // allow canceling with back button
                if (isCancelled()) {
                    Log.i("DownloadTask","Cancelled");
                    input.close();
                    return null;
                }
                total += count;
                // publishing the progress....
                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();
        // take CPU lock to prevent CPU from going off if the user
        // presses the power button during download
        PowerManager pm = (PowerManager) mContext.getSystemService(Context.POWER_SERVICE);
        mWakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK,
                getClass().getName());
        mWakeLock.acquire();

        mPDialog.show();

    }

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

    }

    @Override
    protected void onPostExecute(String result) {
        Log.i("DownloadTask", "Work Done! PostExecute");
        mWakeLock.release();
        mPDialog.dismiss();
        if (result != null)
            Toast.makeText(mContext,"Download error: "+result, Toast.LENGTH_LONG).show();
        else
            Toast.makeText(mContext,"File Downloaded", Toast.LENGTH_SHORT).show();
    }
}

वेक लॉक की अनुमति जोड़ना न भूलें <उपयोग-अनुमति Android: name = "android.permission.WAKE_LOCK" />
हितेश साहू

8

नई फ़ाइल ("/ mnt / sdcard / ...") द्वारा "/ sdcard ..." को बदलना न भूलें अन्यथा आपको FileNotFoundException मिल जाएगी


भाग 2 में सेवा से डाउनलोड करें प्रगति संवाद प्रगति वृद्धि को प्रदर्शित नहीं कर सकता है। यह प्रत्यक्ष वापसी 100, इसलिए यदि 100 यह प्रत्यक्ष जांच setprogress 100 और अधिक प्रगति, कैसे वेतन वृद्धि प्रगति ?? यह केवल 0 प्रगति प्रदर्शित लेकिन वास्तव में चल डाउनलोड करने के लिए
नीरव मेहता

यह 100 में से केवल 0% को केवल अन्य काम को ठीक से प्रदर्शित करता है
नीरव मेहता

14
ऐसा मत करो! नहीं है Environment.getExternalStorageDirectory().getAbsolutePath()sdcard के पथ प्राप्त करने के लिए। इसके अलावा भूल नहीं करता है, तो बाहरी मेमोरी माउंट है की जाँच करने के लिए - Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)( Mannaz )
NAXA

8

मुझे यह ब्लॉग पोस्ट बहुत मददगार लगी, इसकी फाइल डाउनलोड करने के लिए लूपज का उपयोग करना, इसका केवल एक सरल कार्य है, कुछ नए एंड्रॉइड लोगों के लिए सहायक होगा।


7

जब मैं Android विकास सीखना शुरू कर रहा था, मैंने सीखा था कि ProgressDialogजाने का रास्ता है। वहाँ की setProgressविधि है ProgressDialogजो फ़ाइल डाउनलोड हो जाने पर प्रगति स्तर को अपडेट करने के लिए आमंत्रित किया जा सकता है।

कई ऐप्स में मैंने जो सबसे अच्छा देखा है, वह यह है कि वे इस प्रगति संवाद की विशेषताओं को अनुकूलित करते हैं ताकि स्टॉक संस्करण की तुलना में प्रगति संवाद को बेहतर रूप दे सकें। उपयोगकर्ता को मेंढक, हाथी या प्यारे बिल्लियों / पिल्लों जैसे कुछ एनीमेशन के साथ रखने में अच्छा है। प्रगति संवाद के साथ कोई भी एनीमेशन उपयोगकर्ताओं को आकर्षित करता है और वे ऐसा महसूस नहीं करते कि लंबे समय तक इंतजार किया जा रहा है।



5

मेरी व्यक्तिगत सलाह का उपयोग करना है प्रगति डायलॉग और निष्पादन से पहले निर्माण करें, या OnPreExecute()प्रगति शुरू करें, यदि आप प्रगति संवाद की प्रगति पट्टी की क्षैतिज शैली का उपयोग करते हैं, तो अक्सर प्रगति प्रकाशित करें। शेष भाग के एल्गोरिथ्म का अनुकूलन करना है doInBackground


5

एंड्रॉइड क्वेरी लाइब्रेरी का उपयोग करें, वास्तव में बहुत अच्छा है। ProgressDialogआप इसे उपयोग करने के लिए बदल सकते हैं जैसा कि आप अन्य उदाहरणों में देखते हैं, यह आपके लेआउट से प्रगति दृश्य दिखाएगा और पूरा होने के बाद इसे छिपाएगा।

File target = new File(new File(Environment.getExternalStorageDirectory(), "ApplicationName"), "tmp.pdf");
new AQuery(this).progress(R.id.progress_view).download(_competition.qualificationScoreCardsPdf(), target, new AjaxCallback<File>() {
    public void callback(String url, File file, AjaxStatus status) {
        if (file != null) {
            // do something with file  
        } 
    }
});

बात यह है कि, मैंने इसका उपयोग करना बंद कर दिया है, क्योंकि इसकी अकल्पनीयता यह नहीं मानती है कि यह अब और अच्छा जवाब है।
रेनाटिक

3

मैं अन्य समाधान के लिए एक और उत्तर जोड़ रहा हूं जो मैं अभी उपयोग कर रहा हूं क्योंकि एंड्रॉइड क्वेरी स्वस्थ रहने के लिए बहुत बड़ी और अचूक है। इसलिए मैं इस https://github.com/amitshekhariitbhu/Fast-Android-Networking पर चला गया ।

    AndroidNetworking.download(url,dirPath,fileName).build()
      .setDownloadProgressListener(new DownloadProgressListener() {
        public void onProgress(long bytesDownloaded, long totalBytes) {
            bar.setMax((int) totalBytes);
            bar.setProgress((int) bytesDownloaded);
        }
    }).startDownload(new DownloadListener() {
        public void onDownloadComplete() {
            ...
        }

        public void onError(ANError error) {
            ...
        }
    });

2

अनुमतियां

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

HttpURLConnection का उपयोग करना

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

import android.app.Activity;
import android.app.Dialog;
import android.os.Bundle;
import android.os.Environment;
import android.view.View;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;

public class DownloadFileUseHttpURLConnection extends Activity {

ProgressBar pb;
Dialog dialog;
int downloadedSize = 0;
int totalSize = 0;
TextView cur_val;
String dwnload_file_path =  
"http://coderzheaven.com/sample_folder/sample_file.png";
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button b = (Button) findViewById(R.id.b1);
    b.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
             showProgress(dwnload_file_path);

                new Thread(new Runnable() {
                    public void run() {
                         downloadFile();
                    }
                  }).start();
        }
    });
}

void downloadFile(){

    try {
        URL url = new URL(dwnload_file_path);
        HttpURLConnection urlConnection = (HttpURLConnection)   
 url.openConnection();

        urlConnection.setRequestMethod("GET");
        urlConnection.setDoOutput(true);

        //connect
        urlConnection.connect();

        //set the path where we want to save the file           
        File SDCardRoot = Environment.getExternalStorageDirectory(); 
        //create a new file, to save the downloaded file 
        File file = new File(SDCardRoot,"downloaded_file.png");

        FileOutputStream fileOutput = new FileOutputStream(file);

        //Stream used for reading the data from the internet
        InputStream inputStream = urlConnection.getInputStream();

        //this is the total size of the file which we are downloading
        totalSize = urlConnection.getContentLength();

        runOnUiThread(new Runnable() {
            public void run() {
                pb.setMax(totalSize);
            }               
        });

        //create a buffer...
        byte[] buffer = new byte[1024];
        int bufferLength = 0;

        while ( (bufferLength = inputStream.read(buffer)) > 0 ) {
            fileOutput.write(buffer, 0, bufferLength);
            downloadedSize += bufferLength;
            // update the progressbar //
            runOnUiThread(new Runnable() {
                public void run() {
                    pb.setProgress(downloadedSize);
                    float per = ((float)downloadedSize/totalSize) *     
                    100;
                    cur_val.setText("Downloaded " + downloadedSize +  

                    "KB / " + totalSize + "KB (" + (int)per + "%)" );
                }
            });
        }
        //close the output stream when complete //
        fileOutput.close();
        runOnUiThread(new Runnable() {
            public void run() {
                // pb.dismiss(); // if you want close it..
            }
        });         

    } catch (final MalformedURLException e) {
        showError("Error : MalformedURLException " + e);        
        e.printStackTrace();
    } catch (final IOException e) {
        showError("Error : IOException " + e);          
        e.printStackTrace();
    }
    catch (final Exception e) {
        showError("Error : Please check your internet connection " +  
e);
    }       
}

void showError(final String err){
    runOnUiThread(new Runnable() {
        public void run() {
            Toast.makeText(DownloadFileDemo1.this, err,  
      Toast.LENGTH_LONG).show();
        }
    });
}

void showProgress(String file_path){
    dialog = new Dialog(DownloadFileDemo1.this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(R.layout.myprogressdialog);
    dialog.setTitle("Download Progress");

    TextView text = (TextView) dialog.findViewById(R.id.tv1);
    text.setText("Downloading file from ... " + file_path);
    cur_val = (TextView) dialog.findViewById(R.id.cur_pg_tv);
    cur_val.setText("Starting download...");
    dialog.show();

     pb = (ProgressBar)dialog.findViewById(R.id.progress_bar);
     pb.setProgress(0);
            pb.setProgressDrawable(
      getResources().getDrawable(R.drawable.green_progress));  
  }
}

1

आप LiveData और coroutines का उपयोग करके डाउनलोड प्रबंधक की प्रगति का अवलोकन कर सकते हैं, नीचे दिए गए विवरण देखें

https://gist.github.com/FhdAlotaibi/678eb1f4fa94475daf74ac491874fc0e

data class DownloadItem(val bytesDownloadedSoFar: Long = -1, val totalSizeBytes: Long = -1, val status: Int)

class DownloadProgressLiveData(private val application: Application, private val requestId: Long) : LiveData<DownloadItem>(), CoroutineScope {

    private val downloadManager by lazy {
        application.getSystemService(Context.DOWNLOAD_SERVICE) as DownloadManager
    }

    private val job = Job()

    override val coroutineContext: CoroutineContext
        get() = Dispatchers.IO + job

    override fun onActive() {
        super.onActive()
        launch {
            while (isActive) {
                val query = DownloadManager.Query().setFilterById(requestId)
                val cursor = downloadManager.query(query)
                if (cursor.moveToFirst()) {
                    val status = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_STATUS))
                    Timber.d("Status $status")
                    when (status) {
                        DownloadManager.STATUS_SUCCESSFUL,
                        DownloadManager.STATUS_PENDING,
                        DownloadManager.STATUS_FAILED,
                        DownloadManager.STATUS_PAUSED -> postValue(DownloadItem(status = status))
                        else -> {
                            val bytesDownloadedSoFar = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_BYTES_DOWNLOADED_SO_FAR))
                            val totalSizeBytes = cursor.getInt(cursor.getColumnIndex(DownloadManager.COLUMN_TOTAL_SIZE_BYTES))
                            postValue(DownloadItem(bytesDownloadedSoFar.toLong(), totalSizeBytes.toLong(), status))
                        }
                    }
                    if (status == DownloadManager.STATUS_SUCCESSFUL || status == DownloadManager.STATUS_FAILED)
                        cancel()
                } else {
                    postValue(DownloadItem(status = DownloadManager.STATUS_FAILED))
                    cancel()
                }
                cursor.close()
                delay(300)
            }
        }
    }

    override fun onInactive() {
        super.onInactive()
        job.cancel()
    }

}

क्या आप इस वर्ग के लिए usecase उदाहरण प्रदान कर सकते हैं?
करीम करीमोव

0

जरूरी

AsyncTask को Android 11 में चित्रित किया गया है।

अधिक जानकारी के लिए कृपया निम्नलिखित पोस्ट चेकआउट करें

संभवतः Google द्वारा सुझाई गई सहमति के ढांचे में जाना चाहिए


0

हम कोटलिन में फ़ाइलों को डाउनलोड करने के लिए कोरआउट और कार्य प्रबंधक का उपयोग कर सकते हैं।

Build.gradle में एक निर्भरता जोड़ें

    implementation "androidx.work:work-runtime-ktx:2.3.0-beta01"
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.1"

कर्मकार वर्ग

    import android.content.Context
    import android.os.Environment
    import androidx.work.CoroutineWorker
    import androidx.work.WorkerParameters
    import androidx.work.workDataOf
    import com.sa.chat.utils.Const.BASE_URL_IMAGE
    import com.sa.chat.utils.Constants
    import kotlinx.coroutines.delay
    import java.io.BufferedInputStream
    import java.io.File
    import java.io.FileOutputStream
    import java.net.URL

    class DownloadMediaWorkManager(appContext: Context, workerParams: WorkerParameters)
        : CoroutineWorker(appContext, workerParams) {

        companion object {
            const val WORK_TYPE = "WORK_TYPE"
            const val WORK_IN_PROGRESS = "WORK_IN_PROGRESS"
            const val WORK_PROGRESS_VALUE = "WORK_PROGRESS_VALUE"
        }

        override suspend fun doWork(): Result {

            val imageUrl = inputData.getString(Constants.WORK_DATA_MEDIA_URL)
            val imagePath = downloadMediaFromURL(imageUrl)

            return if (!imagePath.isNullOrEmpty()) {
                Result.success(workDataOf(Constants.WORK_DATA_MEDIA_URL to imagePath))
            } else {
                Result.failure()
            }
        }

        private suspend fun downloadMediaFromURL(imageUrl: String?): String? {

            val file = File(
                    getRootFile().path,
                    "IMG_${System.currentTimeMillis()}.jpeg"
            )

            val url = URL(BASE_URL_IMAGE + imageUrl)
            val connection = url.openConnection()
            connection.connect()

            val lengthOfFile = connection.contentLength
            // download the file
            val input = BufferedInputStream(url.openStream(), 8192)
            // Output stream
            val output = FileOutputStream(file)

            val data = ByteArray(1024)
            var total: Long = 0
            var last = 0

            while (true) {

                val count = input.read(data)
                if (count == -1) break
                total += count.toLong()

                val progress = (total * 100 / lengthOfFile).toInt()

                if (progress % 10 == 0) {
                    if (last != progress) {
                        setProgress(workDataOf(WORK_TYPE to WORK_IN_PROGRESS,
                                WORK_PROGRESS_VALUE to progress))
                    }
                    last = progress
                    delay(50)
                }
                output.write(data, 0, count)
            }

            output.flush()
            output.close()
            input.close()

            return file.path

        }

        private fun getRootFile(): File {

            val rootDir = File(Environment.getExternalStorageDirectory().absolutePath + "/AppName")

            if (!rootDir.exists()) {
                rootDir.mkdir()
            }

            val dir = File("$rootDir/${Constants.IMAGE_FOLDER}/")

            if (!dir.exists()) {
                dir.mkdir()
            }
            return File(dir.absolutePath)
        }
    }

गतिविधि वर्ग में कार्य प्रबंधक के माध्यम से डाउनलोड करना शुरू करें

 private fun downloadImage(imagePath: String?, id: String) {

            val data = workDataOf(WORK_DATA_MEDIA_URL to imagePath)
            val downloadImageWorkManager = OneTimeWorkRequestBuilder<DownloadMediaWorkManager>()
                    .setInputData(data)
                    .addTag(id)
                    .build()

            WorkManager.getInstance(this).enqueue(downloadImageWorkManager)

            WorkManager.getInstance(this).getWorkInfoByIdLiveData(downloadImageWorkManager.id)
                    .observe(this, Observer { workInfo ->

                        if (workInfo != null) {
                            when {
                                workInfo.state == WorkInfo.State.SUCCEEDED -> {
                                    progressBar?.visibility = View.GONE
                                    ivDownload?.visibility = View.GONE
                                }
                                workInfo.state == WorkInfo.State.FAILED || workInfo.state == WorkInfo.State.CANCELLED || workInfo.state == WorkInfo.State.BLOCKED -> {
                                    progressBar?.visibility = View.GONE
                                    ivDownload?.visibility = View.VISIBLE
                                }
                                else -> {
                                    if(workInfo.progress.getString(WORK_TYPE) == WORK_IN_PROGRESS){
                                        val progress = workInfo.progress.getInt(WORK_PROGRESS_VALUE, 0)
                                        progressBar?.visibility = View.VISIBLE
                                        progressBar?.progress = progress
                                        ivDownload?.visibility = View.GONE

                                    }
                                }
                            }
                        }
                    })

        }
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.