android 自動檢測版本升級

yangxi_001發表於2014-11-23

轉自:http://blog.csdn.net/jj120522/article/details/7948554

在我們APP的開發中,往往都會遇到版本的升級,因為不可能有任何一個應用做的完美無缺,所以版本升級對APP應用來說是不可缺少的一部分.像新浪微博等一些應用軟體,三天兩頭提醒我升級.不過這樣也很正常,就像android 升級一樣,為了給使用者提供更方便更人性化的操作.說下具體實現吧,不過我是參考別人的。不管對你們有沒有幫助,總之對我有幫助啊,如果日後用到就直接copy了.哈哈,不扯了。

首先看一個檔案manifest檔案.

[java] view plaincopy
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  2.     package="com.jj.upgrade"  
  3.     android:versionCode="1"  
  4.     android:versionName="1.0" >  
我們可以很清楚的看到versionCode和versionName,我們一般用versionCode來實現,

實現原理很簡單:伺服器端有個serverVersion,我們本地有個localVersion.伺服器端serverVersion>localVersion,這個時候我們就需要進行升級版本.原理大致就是這樣。具體實現請看下面.

[java] view plaincopy
  1. package com.jj.upgrade;  
  2.   
  3. import com.jj.Service.UpdateService;  
  4.   
  5. import android.app.AlertDialog;  
  6. import android.app.Application;  
  7. import android.content.DialogInterface;  
  8. import android.content.Intent;  
  9. import android.content.pm.PackageInfo;  
  10. import android.content.pm.PackageManager.NameNotFoundException;  
  11.   
  12. /*** 
  13.  * MyApplication 
  14.  *  
  15.  * @author zhangjia 
  16.  *  
  17.  */  
  18. public class MyApplication extends Application {  
  19.   
  20.     public static int localVersion = 0;// 本地安裝版本  
  21.   
  22.     public static int serverVersion = 2;// 伺服器版本  
  23.   
  24.     public static String downloadDir = "jj/";// 安裝目錄  
  25.   
  26.     @Override  
  27.     public void onCreate() {  
  28.         super.onCreate();  
  29.         try {  
  30.             PackageInfo packageInfo = getApplicationContext()  
  31.                     .getPackageManager().getPackageInfo(getPackageName(), 0);  
  32.             localVersion = packageInfo.versionCode;  
  33.         } catch (NameNotFoundException e) {  
  34.             e.printStackTrace();  
  35.         }  
  36.   
  37.         /*** 
  38.          * 在這裡寫一個方法用於請求獲取伺服器端的serverVersion. 
  39.          */  
  40.   
  41.     }  
  42.   
  43. }  

我們一般把全域性的東西放到application裡面.

[java] view plaincopy
  1. public class MainActivity extends Activity {  
  2.     private MyApplication myApplication;  
  3.   
  4.     @Override  
  5.     public void onCreate(Bundle savedInstanceState) {  
  6.         super.onCreate(savedInstanceState);  
  7.         setContentView(R.layout.main);  
  8.           
  9.         checkVersion();  
  10.     }  
  11.   
  12.     /*** 
  13.      * 檢查是否更新版本 
  14.      */  
  15.     public void checkVersion() {  
  16.         myApplication = (MyApplication) getApplication();  
  17.         if (myApplication.localVersion < myApplication.serverVersion) {  
  18.   
  19.             // 發現新版本,提示使用者更新  
  20.             AlertDialog.Builder alert = new AlertDialog.Builder(this);  
  21.             alert.setTitle("軟體升級")  
  22.                     .setMessage("發現新版本,建議立即更新使用.")  
  23.                     .setPositiveButton("更新",  
  24.                             new DialogInterface.OnClickListener() {  
  25.                                 public void onClick(DialogInterface dialog,  
  26.                                         int which) {  
  27.                                     Intent updateIntent = new Intent(  
  28.                                             MainActivity.this,  
  29.                                             UpdateService.class);  
  30.                                     updateIntent.putExtra(  
  31.                                             "app_name",  
  32.                                             getResources().getString(  
  33.                                                     R.string.app_name));  
  34.                                     startService(updateIntent);  
  35.                                 }  
  36.                             })  
  37.                     .setNegativeButton("取消",  
  38.                             new DialogInterface.OnClickListener() {  
  39.                                 public void onClick(DialogInterface dialog,  
  40.                                         int which) {  
  41.                                     dialog.dismiss();  
  42.                                 }  
  43.                             });  
  44.             alert.create().show();  
  45.   
  46.         }  
  47.     }  
  48. }  
我們在執行應用的時候要checkVersion();進行檢查版本是否要進行升級.

最主要的是UpdateService服務類,

[java] view plaincopy
  1. @Override  
  2.     public int onStartCommand(Intent intent, int flags, int startId) {  
  3.   
  4.         app_name = intent.getStringExtra("app_name");  
  5.         // 建立檔案  
  6.         FileUtil.createFile(app_name);// 建立檔案  
  7.   
  8.         createNotification();// 首次建立  
  9.   
  10.         createThread();// 執行緒下載  
  11.   
  12.         return super.onStartCommand(intent, flags, startId);  
  13.   
  14.     }  

建立路徑及檔案,這裡就不介紹了,不明白了下載原始碼看.

首先我們先 看createNotification().這個方法:

[java] view plaincopy
  1. /*** 
  2.      * 建立通知欄 
  3.      */  
  4.     RemoteViews contentView;  
  5.     public void createNotification() {  
  6.         notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);  
  7.         notification = new Notification();  
  8.         notification.icon = R.drawable.ic_launcher;// 這個圖示必須要設定,不然下面那個RemoteViews不起作用.  
  9.         // 這個引數是通知提示閃出來的值.  
  10.         notification.tickerText = "開始下載";  
  11.         //  
  12.         // updateIntent = new Intent(this, MainActivity.class);  
  13.         // pendingIntent = PendingIntent.getActivity(this, 0, updateIntent, 0);  
  14.         //  
  15.         // // 這裡面的引數是通知欄view顯示的內容  
  16.         // notification.setLatestEventInfo(this, app_name, "下載:0%",  
  17.         // pendingIntent);  
  18.         //  
  19.         // notificationManager.notify(notification_id, notification);  
  20.   
  21.         /*** 
  22.          * 在這裡我們用自定的view來顯示Notification 
  23.          */  
  24.         contentView = new RemoteViews(getPackageName(),  
  25.                 R.layout.notification_item);  
  26.         contentView.setTextViewText(R.id.notificationTitle, "正在下載");  
  27.         contentView.setTextViewText(R.id.notificationPercent, "0%");  
  28.         contentView.setProgressBar(R.id.notificationProgress, 1000false);  
  29.   
  30.         notification.contentView = contentView;  
  31.   
  32.         updateIntent = new Intent(this, MainActivity.class);  
  33.         updateIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);  
  34.         pendingIntent = PendingIntent.getActivity(this0, updateIntent, 0);  
  35.   
  36.         notification.contentIntent = pendingIntent;  
  37.   
  38.         notificationManager.notify(notification_id, notification);  
  39.   
  40.     }  
上面實現的也不難理解.(主要是初始化Notification,用於提醒使用者開始下載)

接著我們要看createThread方法

[java] view plaincopy
  1. /*** 
  2.      * 開執行緒下載 
  3.      */  
  4.     public void createThread() {  
  5.         /*** 
  6.          * 更新UI 
  7.          */  
  8.         final Handler handler = new Handler() {  
  9.             @Override  
  10.             public void handleMessage(Message msg) {  
  11.                 switch (msg.what) {  
  12.                 case DOWN_OK:  
  13.                     // 下載完成,點選安裝  
  14.                     Uri uri = Uri.fromFile(FileUtil.updateFile);  
  15.                     Intent intent = new Intent(Intent.ACTION_VIEW);  
  16.                     intent.setDataAndType(uri,  
  17.                             "application/vnd.android.package-archive");  
  18.   
  19.                     pendingIntent = PendingIntent.getActivity(  
  20.                             UpdateService.this0, intent, 0);  
  21.   
  22.                     notification.setLatestEventInfo(UpdateService.this,  
  23.                             app_name, "下載成功,點選安裝", pendingIntent);  
  24.   
  25.                     notificationManager.notify(notification_id, notification);  
  26.   
  27.                     stopSelf();  
  28.                     break;  
  29.                 case DOWN_ERROR:  
  30.                     notification.setLatestEventInfo(UpdateService.this,  
  31.                             app_name, "下載失敗", pendingIntent);  
  32.                     break;  
  33.   
  34.                 default:  
  35.                     stopSelf();  
  36.                     break;  
  37.                 }  
  38.   
  39.             }  
  40.   
  41.         };  
  42.   
  43.         final Message message = new Message();  
  44.   
  45.         new Thread(new Runnable() {  
  46.             @Override  
  47.             public void run() {  
  48.   
  49.                 try {  
  50.                     long downloadSize = downloadUpdateFile(down_url,  
  51.                             FileUtil.updateFile.toString());  
  52.                     if (downloadSize > 0) {  
  53.                         // 下載成功  
  54.                         message.what = DOWN_OK;  
  55.                         handler.sendMessage(message);  
  56.                     }  
  57.   
  58.                 } catch (Exception e) {  
  59.                     e.printStackTrace();  
  60.                     message.what = DOWN_ERROR;  
  61.                     handler.sendMessage(message);  
  62.                 }  
  63.   
  64.             }  
  65.         }).start();  
  66.     }  
這個方法有點小多,不過我想大家都看的明白,我在這裡簡單說名一下:首先我們建立一個handler用於檢測最後下載ok還是not ok.

下面我們開啟了執行緒進行下載資料。

我們接著看downloadUpdateFile這個方法:

[java] view plaincopy
  1. /*** 
  2.      * 下載檔案 
  3.      *  
  4.      * @return 
  5.      * @throws MalformedURLException 
  6.      */  
  7.     public long downloadUpdateFile(String down_url, String file)  
  8.             throws Exception {  
  9.         int down_step = 5;// 提示step  
  10.         int totalSize;// 檔案總大小  
  11.         int downloadCount = 0;// 已經下載好的大小  
  12.         int updateCount = 0;// 已經上傳的檔案大小  
  13.         InputStream inputStream;  
  14.         OutputStream outputStream;  
  15.   
  16.         URL url = new URL(down_url);  
  17.         HttpURLConnection httpURLConnection = (HttpURLConnection) url  
  18.                 .openConnection();  
  19.         httpURLConnection.setConnectTimeout(TIMEOUT);  
  20.         httpURLConnection.setReadTimeout(TIMEOUT);  
  21.         // 獲取下載檔案的size  
  22.         totalSize = httpURLConnection.getContentLength();  
  23.         if (httpURLConnection.getResponseCode() == 404) {  
  24.             throw new Exception("fail!");  
  25.         }  
  26.         inputStream = httpURLConnection.getInputStream();  
  27.         outputStream = new FileOutputStream(file, false);// 檔案存在則覆蓋掉  
  28.         byte buffer[] = new byte[1024];  
  29.         int readsize = 0;  
  30.         while ((readsize = inputStream.read(buffer)) != -1) {  
  31.             outputStream.write(buffer, 0, readsize);  
  32.             downloadCount += readsize;// 時時獲取下載到的大小  
  33.             /** 
  34.              * 每次增張5% 
  35.              */  
  36.             if (updateCount == 0  
  37.                     || (downloadCount * 100 / totalSize - down_step) >= updateCount) {  
  38.                 updateCount += down_step;  
  39.                 // 改變通知欄  
  40.                 // notification.setLatestEventInfo(this, "正在下載...", updateCount  
  41.                 // + "%" + "", pendingIntent);  
  42.                 contentView.setTextViewText(R.id.notificationPercent,  
  43.                         updateCount + "%");  
  44.                 contentView.setProgressBar(R.id.notificationProgress, 100,  
  45.                         updateCount, false);  
  46.                 // show_view  
  47.                 notificationManager.notify(notification_id, notification);  
  48.   
  49.             }  
  50.   
  51.         }  
  52.         if (httpURLConnection != null) {  
  53.             httpURLConnection.disconnect();  
  54.         }  
  55.         inputStream.close();  
  56.         outputStream.close();  
  57.   
  58.         return downloadCount;  
  59.   
  60.     }  
註釋已經寫的很詳細,相信大家都看的明白,如果哪裡有不足的地方,請留您吉言指出.

 這裡我用別的app代替了,簡單省事,正常的話,你要對你的APP進行數字簽名.然後才可以進行升級應用. 

示意圖:

                    

          提示有新版                                       開始升級                                        升級下載中                                  下載完畢,點選安裝

 

     原始碼下載

相關文章