溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中如何實現(xiàn)自動更新

發(fā)布時間:2022-04-15 16:27:14 來源:億速云 閱讀:186 作者:iii 欄目:編程語言

本篇內容介紹了“Android中如何實現(xiàn)自動更新”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

代碼如下:

import java.io.File;  

import java.io.FileOutputStream;

import java.io.IOException;  

import java.io.InputStream;  

import org.apache.http.HttpEntity;  
import org.apache.http.HttpResponse;  
import org.apache.http.client.ClientProtocolException;  
import org.apache.http.client.HttpClient;  
import org.apache.http.client.methods.HttpGet;  
import org.apache.http.impl.client.DefaultHttpClient;  
  
import android.app.AlertDialog;  
import android.app.Dialog;  
import android.app.ProgressDialog;  
import android.content.DialogInterface;  
import android.content.Intent;  
import android.net.Uri;  
import android.os.Bundle;  
import android.os.Environment;  
import android.os.Handler;  
  
public class Update extends BaseActivity {  
    public ProgressDialog pBar;  
    private Handler handler = new Handler();  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.update);  
        Dialog dialog = new AlertDialog.Builder(Update.this).setTitle("系統(tǒng)更新")  
                .setMessage("發(fā)現(xiàn)新版本,請更新!")// 設置內容  
                .setPositiveButton("確定",// 設置確定按鈕  
                        new DialogInterface.OnClickListener() {  
  
                            @Override  
                            public void onClick(DialogInterface dialog,  
                                    int which) {  
                                pBar = new ProgressDialog(Update.this);  
                                pBar.setTitle("正在下載");  
                                pBar.setMessage("請稍候...");  
                                pBar  
                                        .setProgressStyle(ProgressDialog.STYLE_SPINNER);  
                                downFile("http://url:8765/OA.apk");   
                                   
                            }  
  
                        }).setNegativeButton("取消",    
                        new DialogInterface.OnClickListener() {  
                            public void onClick(DialogInterface dialog,  
                                    int whichButton) {  
                                // 點擊"取消"按鈕之后退出程序  
                                  
                            }  
                        }).create();// 創(chuàng)建  
        // 顯示對話框  
        dialog.show();  
  
    }  
  
    void downFile(final String url) {  
        pBar.show();  
        new Thread() {  
            public void run() {  
                HttpClient client = new DefaultHttpClient();  
                // params[0]代表連接的url  
                HttpGet get = new HttpGet(url);  
                HttpResponse response;  
                try {  
                    response = client.execute(get);  
                    HttpEntity entity = response.getEntity();  
                    long length = entity.getContentLength();  
                    InputStream is = entity.getContent();  
                    FileOutputStream fileOutputStream = null;  
                    if (is != null) {  
  
                        File file = new File(Environment  
                                .getExternalStorageDirectory(), "OA.apk");  
                        fileOutputStream = new FileOutputStream(file);  
                          
                        byte[] buf = new byte[1024];  
                        int ch = -1;  
                        int count = 0;  
                        while ((ch = is.read(buf)) != -1) {  
                            // baos.write(buf, 0, ch);  
                            fileOutputStream.write(buf, 0, ch);  
                            count += ch;  
                            if (length > 0) {  
                              
                            }  
  
                        }  
  
                    }  
                    fileOutputStream.flush();  
                    if (fileOutputStream != null) {  
                        fileOutputStream.close();  
                    }  
                    down();  
                } catch (ClientProtocolException e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                } catch (IOException e) {  
                    // TODO Auto-generated catch block  
                    e.printStackTrace();  
                }  
            }  
  
        }.start();  
  
    }  
  
    void down() {  
        handler.post(new Runnable() {  
            public void run() {  
                pBar.cancel();  
                update();  
            }  
        });  
  
    }  
  
    void update() {  
  
        Intent intent = new Intent(Intent.ACTION_VIEW);  
        intent.setDataAndType(Uri.fromFile(new File("/sdcard/OA.apk")),  
                "application/vnd.android.package-archive");  
        startActivity(intent);  
    }  
  
}

“Android中如何實現(xiàn)自動更新”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI