Android应用的自动升级、更新模块的实现

我们看到很多Android应用都具有自动更新功能,用户一键就可以完成软件的升级更新。得益于Android系统的软件包管理和安装机制,这一功能实现起来相当简单,下面我们就来实践一下。首先给出界面效果:


1. 准备知识 
在AndroidManifest.xml里定义了每个Android apk的版本标识:

[xhtml]  view plain copy
  1. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  2.       package="com.myapp"  
  3.       android:versionCode="1"  
  4.       android:versionName="1.0.0">  
  5. <application></application>  
  6. </manifest>  

其中,android:versionCode和android:versionName两个字段分别表示版本代码,版本名称。versionCode是整型数字,versionName是字符串。由于version是给用户看的,不太容易比较大小,升级检查时,可以以检查versionCode为主,方便比较出版本的前后大小。
那么,在应用中如何读取AndroidManifest.xml中的versionCode和versionName呢?可以使用PackageManager的API,参考以下代码:
[java]  view plain copy
  1. public static int getVerCode(Context context) {  
  2.         int verCode = -1;  
  3.         try {  
  4.             verCode = context.getPackageManager().getPackageInfo(  
  5.                     "com.myapp"0).versionCode;  
  6.         } catch (NameNotFoundException e) {  
  7.             Log.e(TAG, e.getMessage());  
  8.         }  
  9.         return verCode;  
  10.     }  
  11.      
  12.     public static String getVerName(Context context) {  
  13.         String verName = "";  
  14.         try {  
  15.             verName = context.getPackageManager().getPackageInfo(  
  16.                     "com.myapp"0).versionName;  
  17.         } catch (NameNotFoundException e) {  
  18.             Log.e(TAG, e.getMessage());  
  19.         }  
  20.         return verName;     
  21. }  

或者在AndroidManifest中将android:versionName="1.2.0"写成android:versionName="@string/app_versionName",然后在values/strings.xml中添加对应字符串,这样实现之后,就可以使用如下代码获得版本名称:
[java]  view plain copy
  1. public static String getVerName(Context context) {  
  2.         String verName = context.getResources()  
  3.         .getText(R.string.app_versionName).toString();  
  4.         return verName;  
  5. }  

同理,apk的应用名称可以这样获得:
[java]  view plain copy
  1. public static String getAppName(Context context) {  
  2.         String verName = context.getResources()  
  3.         .getText(R.string.app_name).toString();  
  4.         return verName;  
  5. }  

2. 流程框架

3. 版本检查 
在服务端放置最新版本的apk文件,如:http://localhost/myapp/myapp.apk
同时,在服务端放置对应此apk的版本信息调用接口或者文件,如:http://localhost/myapp/ver.json 
ver.json中的内容为:

[xhtml]  view plain copy
  1. [{"appname":"jtapp12","apkname":"jtapp-12-updateapksamples.apk","verName":1.0.1,"verCode":2}]  

然后,在手机客户端上进行版本读取和检查:

[java]  view plain copy
  1. private boolean getServerVer () {  
  2.         try {  
  3.             String verjson = NetworkTool.getContent(Config.UPDATE_SERVER  
  4.                     + Config.UPDATE_VERJSON);  
  5.             JSONArray array = new JSONArray(verjson);  
  6.             if (array.length() > 0) {  
  7.                 JSONObject obj = array.getJSONObject(0);  
  8.                 try {  
  9.                     newVerCode = Integer.parseInt(obj.getString("verCode"));  
  10.                     newVerName = obj.getString("verName");  
  11.                 } catch (Exception e) {  
  12.                     newVerCode = -1;  
  13.                     newVerName = "";  
  14.                     return false;  
  15.                 }  
  16.             }  
  17.         } catch (Exception e) {  
  18.             Log.e(TAG, e.getMessage());  
  19.             return false;  
  20.         }  
  21.         return true;  
  22.     }  

比较服务器和客户端的版本,并进行更新操作。

[java]  view plain copy
  1. if (getServerVerCode()) {  
  2.          int vercode = Config.getVerCode(this); // 用到前面第一节写的方法  
  3.          if (newVerCode > vercode) {  
  4.              doNewVersionUpdate(); // 更新新版本  
  5.          } else {  
  6.              notNewVersionShow(); // 提示当前为最新版本  
  7.          }  
  8.      }          

详细方法:

[java]  view plain copy
  1. private void notNewVersionShow() {  
  2.     int verCode = Config.getVerCode(this);  
  3.     String verName = Config.getVerName(this);  
  4.     StringBuffer sb = new StringBuffer();  
  5.     sb.append("当前版本:");  
  6.     sb.append(verName);  
  7.     sb.append(" Code:");  
  8.     sb.append(verCode);  
  9.     sb.append(",/n已是最新版,无需更新!");  
  10.     Dialog dialog = new AlertDialog.Builder(Update.this).setTitle("软件更新")  
  11.             .setMessage(sb.toString())// 设置内容  
  12.             .setPositiveButton("确定",// 设置确定按钮  
  13.                     new DialogInterface.OnClickListener() {  
  14.                         @Override  
  15.                         public void onClick(DialogInterface dialog,  
  16.                                 int which) {  
  17.                             finish();  
  18.                         }  
  19.                     }).create();// 创建  
  20.     // 显示对话框  
  21.     dialog.show();  
  22. }  
  23. private void doNewVersionUpdate() {  
  24.     int verCode = Config.getVerCode(this);  
  25.     String verName = Config.getVerName(this);  
  26.     StringBuffer sb = new StringBuffer();  
  27.     sb.append("当前版本:");  
  28.     sb.append(verName);  
  29.     sb.append(" Code:");  
  30.     sb.append(verCode);  
  31.     sb.append(", 发现新版本:");  
  32.     sb.append(newVerName);  
  33.     sb.append(" Code:");  
  34.     sb.append(newVerCode);  
  35.     sb.append(", 是否更新?");  
  36.     Dialog dialog = new AlertDialog.Builder(Update.this)  
  37.             .setTitle("软件更新")  
  38.             .setMessage(sb.toString())  
  39.             // 设置内容  
  40.             .setPositiveButton("更新",// 设置确定按钮  
  41.                     new DialogInterface.OnClickListener() {  
  42.                         @Override  
  43.                         public void onClick(DialogInterface dialog,  
  44.                                 int which) {  
  45.                             pBar = new ProgressDialog(Update.this);  
  46.                             pBar.setTitle("正在下载");  
  47.                             pBar.setMessage("请稍候...");  
  48.                             pBar.setProgressStyle(ProgressDialog.STYLE_SPINNER);  
  49.                             downFile(Config.UPDATE_SERVER + Config.UPDATE_APKNAME);  
  50.                         }  
  51.                     })  
  52.             .setNegativeButton("暂不更新",  
  53.                     new DialogInterface.OnClickListener() {  
  54.                         public void onClick(DialogInterface dialog,  
  55.                                 int whichButton) {  
  56.                             // 点击"取消"按钮之后退出程序  
  57.                             finish();  
  58.                         }  
  59.                     }).create();// 创建  
  60.     // 显示对话框  
  61.     dialog.show();  
  62. }  

4. 下载模块

注,本部分参考了前人的相关实现,见 http://apps.hi.baidu.com/share/detail/24172508

[java]  view plain copy
  1. void downFile(final String url) {  
  2.     pBar.show();  
  3.     new Thread() {  
  4.         public void run() {  
  5.             HttpClient client = new DefaultHttpClient();  
  6.             HttpGet get = new HttpGet(url);  
  7.             HttpResponse response;  
  8.             try {  
  9.                 response = client.execute(get);  
  10.                 HttpEntity entity = response.getEntity();  
  11.                 long length = entity.getContentLength();  
  12.                 InputStream is = entity.getContent();  
  13.                 FileOutputStream fileOutputStream = null;  
  14.                 if (is != null) {  
  15.                     File file = new File(  
  16.                             Environment.getExternalStorageDirectory(),  
  17.                             Config.UPDATE_SAVENAME);  
  18.                     fileOutputStream = new FileOutputStream(file);  
  19.                     byte[] buf = new byte[1024];  
  20.                     int ch = -1;  
  21.                     int count = 0;  
  22.                     while ((ch = is.read(buf)) != -1) {  
  23.                         fileOutputStream.write(buf, 0, ch);  
  24.                         count += ch;  
  25.                         if (length > 0) {  
  26.                         }  
  27.                     }  
  28.                 }  
  29.                 fileOutputStream.flush();  
  30.                 if (fileOutputStream != null) {  
  31.                     fileOutputStream.close();  
  32.                 }  
  33.                 down();  
  34.             } catch (ClientProtocolException e) {  
  35.                 e.printStackTrace();  
  36.             } catch (IOException e) {  
  37.                 e.printStackTrace();  
  38.             }  
  39.         }  
  40.     }.start();  
  41. }  

下载完成,通过handler通知主ui线程将下载对话框取消。

[java]  view plain copy
  1. void down() {  
  2.         handler.post(new Runnable() {  
  3.             public void run() {  
  4.                 pBar.cancel();  
  5.                 update();  
  6.             }  
  7.         });  
  8. }  
   

5. 安装应用 

[java]  view plain copy
  1. void update() {  
  2.     Intent intent = new Intent(Intent.ACTION_VIEW);  
  3.     intent.setDataAndType(Uri.fromFile(new File(Environment  
  4.             .getExternalStorageDirectory(), Config.UPDATE_SAVENAME)),  
  5.             "application/vnd.android.package-archive");  
  6.     startActivity(intent);  
  7. }  
安卓应用自动更新功能的实现
如果你将apk应用发布到market上,那么,你会发现market内建了类似的模块,可以自动更新或者提醒你是否更新应用。那么,对于你自己的应用需要自动更新的话,自己内建一个是不是更加方便了呢?本文提到的代码大多是在UpdateActivity.java中实现,为了能够使更新过程更加友好,可以在最初launcher的Activity中建立一个线程,用来检查服务端是否有更新。有更新的时候就启动UpdateActivity,这样的使用体验更加平滑。

本文例程源码查看/下载:
http://code.google.com/p/androidex/source/browse/trunk/jtapp-12-updateapksamples

 

版权归个人所有,转载请注明出处

http://blog.csdn.net/xjanker2/archive/2011/04/06/6303937.aspx



大家分享Android里应用版本更新功能这一块的实现。

一个好的应用软件都是需要好的维护,从初出版本到最后精品,这个过程需要版本不停的更新,那么如何让用户第一时间获取最新的应用安装包呢?那么就要求我们从第一个版本就要实现升级模块这一功能。

自动更新功能的实现原理,就是我们事先和后台协商好一个接口,我们在应用的主Activity里,去访问这个接口,如果需要更新,后台会返回一些数据(比如,提示语;最新版本的url等)。然后我们给出提示框,用户点击开始下载,下载完成开始覆盖安装程序,这样用户的应用就保持最新的拉。

为了让大家容易理解,我像往常一样准备一个小例子,这里为了方便我就省去了和后台交互部分了。步骤分别如下:

第一步:新建一个Android工程命名为:UpdateDemo.代码结构如下图所示:

第二步:新建一个UpdateManager.java类,负责软件更新功能模块,代码如下:

[java]  view plain copy
  1. package com.tutor.update;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileOutputStream;  
  5. import java.io.IOException;  
  6. import java.io.InputStream;  
  7. import java.net.HttpURLConnection;  
  8. import java.net.MalformedURLException;  
  9. import java.net.URL;  
  10.   
  11.   
  12. import android.app.AlertDialog;  
  13. import android.app.Dialog;  
  14. import android.app.AlertDialog.Builder;  
  15. import android.content.Context;  
  16. import android.content.DialogInterface;  
  17. import android.content.Intent;  
  18. import android.content.DialogInterface.OnClickListener;  
  19. import android.net.Uri;  
  20. import android.os.Handler;  
  21. import android.os.Message;  
  22. import android.view.LayoutInflater;  
  23. import android.view.View;  
  24. import android.widget.ProgressBar;  
  25.   
  26. public class UpdateManager {  
  27.   
  28.     private Context mContext;  
  29.       
  30.     //提示语  
  31.     private String updateMsg = "有最新的软件包哦,亲快下载吧~";  
  32.       
  33.     //返回的安装包url  
  34.     private String apkUrl = "http://softfile.3g.qq.com:8080/msoft/179/24659/43549/qq_hd_mini_1.4.apk";  
  35.       
  36.       
  37.     private Dialog noticeDialog;  
  38.       
  39.     private Dialog downloadDialog;  
  40.      /* 下载包安装路径 */  
  41.     private static final String savePath = "/sdcard/updatedemo/";  
  42.       
  43.     private static final String saveFileName = savePath + "UpdateDemoRelease.apk";  
  44.   
  45.     /* 进度条与通知ui刷新的handler和msg常量 */  
  46.     private ProgressBar mProgress;  
  47.   
  48.       
  49.     private static final int DOWN_UPDATE = 1;  
  50.       
  51.     private static final int DOWN_OVER = 2;  
  52.       
  53.     private int progress;  
  54.       
  55.     private Thread downLoadThread;  
  56.       
  57.     private boolean interceptFlag = false;  
  58.       
  59.     private Handler mHandler = new Handler(){  
  60.         public void handleMessage(Message msg) {  
  61.             switch (msg.what) {  
  62.             case DOWN_UPDATE:  
  63.                 mProgress.setProgress(progress);  
  64.                 break;  
  65.             case DOWN_OVER:  
  66.                   
  67.                 installApk();  
  68.                 break;  
  69.             default:  
  70.                 break;  
  71.             }  
  72.         };  
  73.     };  
  74.       
  75.     public UpdateManager(Context context) {  
  76.         this.mContext = context;  
  77.     }  
  78.       
  79.     //外部接口让主Activity调用  
  80.     public void checkUpdateInfo(){  
  81.         showNoticeDialog();  
  82.     }  
  83.       
  84.       
  85.     private void showNoticeDialog(){  
  86.         AlertDialog.Builder builder = new Builder(mContext);  
  87.         builder.setTitle("软件版本更新");  
  88.         builder.setMessage(updateMsg);  
  89.         builder.setPositiveButton("下载"new OnClickListener() {           
  90.             @Override  
  91.             public void onClick(DialogInterface dialog, int which) {  
  92.                 dialog.dismiss();  
  93.                 showDownloadDialog();             
  94.             }  
  95.         });  
  96.         builder.setNegativeButton("以后再说"new OnClickListener() {             
  97.             @Override  
  98.             public void onClick(DialogInterface dialog, int which) {  
  99.                 dialog.dismiss();                 
  100.             }  
  101.         });  
  102.         noticeDialog = builder.create();  
  103.         noticeDialog.show();  
  104.     }  
  105.       
  106.     private void showDownloadDialog(){  
  107.         AlertDialog.Builder builder = new Builder(mContext);  
  108.         builder.setTitle("软件版本更新");  
  109.           
  110.         final LayoutInflater inflater = LayoutInflater.from(mContext);  
  111.         View v = inflater.inflate(R.layout.progress, null);  
  112.         mProgress = (ProgressBar)v.findViewById(R.id.progress);  
  113.           
  114.         builder.setView(v);  
  115.         builder.setNegativeButton("取消"new OnClickListener() {   
  116.             @Override  
  117.             public void onClick(DialogInterface dialog, int which) {  
  118.                 dialog.dismiss();  
  119.                 interceptFlag = true;  
  120.             }  
  121.         });  
  122.         downloadDialog = builder.create();  
  123.         downloadDialog.show();  
  124.           
  125.         downloadApk();  
  126.     }  
  127.       
  128.     private Runnable mdownApkRunnable = new Runnable() {      
  129.         @Override  
  130.         public void run() {  
  131.             try {  
  132.                 URL url = new URL(apkUrl);  
  133.               
  134.                 HttpURLConnection conn = (HttpURLConnection)url.openConnection();  
  135.                 conn.connect();  
  136.                 int length = conn.getContentLength();  
  137.                 InputStream is = conn.getInputStream();  
  138.                   
  139.                 File file = new File(savePath);  
  140.                 if(!file.exists()){  
  141.                     file.mkdir();  
  142.                 }  
  143.                 String apkFile = saveFileName;  
  144.                 File ApkFile = new File(apkFile);  
  145.                 FileOutputStream fos = new FileOutputStream(ApkFile);  
  146.                   
  147.                 int count = 0;  
  148.                 byte buf[] = new byte[1024];  
  149.                   
  150.                 do{                   
  151.                     int numread = is.read(buf);  
  152.                     count += numread;  
  153.                     progress =(int)(((float)count / length) * 100);  
  154.                     //更新进度  
  155.                     mHandler.sendEmptyMessage(DOWN_UPDATE);  
  156.                     if(numread <= 0){      
  157.                         //下载完成通知安装  
  158.                         mHandler.sendEmptyMessage(DOWN_OVER);  
  159.                         break;  
  160.                     }  
  161.                     fos.write(buf,0,numread);  
  162.                 }while(!interceptFlag);//点击取消就停止下载.  
  163.                   
  164.                 fos.close();  
  165.                 is.close();  
  166.             } catch (MalformedURLException e) {  
  167.                 e.printStackTrace();  
  168.             } catch(IOException e){  
  169.                 e.printStackTrace();  
  170.             }  
  171.               
  172.         }  
  173.     };  
  174.       
  175.      /** 
  176.      * 下载apk 
  177.      * @param url 
  178.      */  
  179.       
  180.     private void downloadApk(){  
  181.         downLoadThread = new Thread(mdownApkRunnable);  
  182.         downLoadThread.start();  
  183.     }  
  184.      /** 
  185.      * 安装apk 
  186.      * @param url 
  187.      */  
  188.     private void installApk(){  
  189.         File apkfile = new File(saveFileName);  
  190.         if (!apkfile.exists()) {  
  191.             return;  
  192.         }      
  193.         Intent i = new Intent(Intent.ACTION_VIEW);  
  194.         i.setDataAndType(Uri.parse("file://" + apkfile.toString()), "application/vnd.android.package-archive");   
  195.         mContext.startActivity(i);  
  196.       
  197.     }  
  198. }  

第三步:在MainActivity.java也就是主Activity调用,代码如下:

[java]  view plain copy
  1. package com.tutor.update;  
  2.   
  3. import android.app.Activity;  
  4. import android.os.Bundle;  
  5.   
  6. public class MainAcitivity extends Activity {  
  7.       
  8.   
  9.     private UpdateManager mUpdateManager;  
  10.     @Override  
  11.     public void onCreate(Bundle savedInstanceState) {  
  12.         super.onCreate(savedInstanceState);  
  13.         setContentView(R.layout.main);  
  14.           
  15.         //这里来检测版本是否需要更新  
  16.         mUpdateManager = new UpdateManager(this);  
  17.         mUpdateManager.checkUpdateInfo();  
  18.     }       
  19. }  

第四步:添加程序所用的资源与权限:

下载的时候用到了ProgressBar,所以事先写了一个progress.xml布局文件,代码如下:

[java]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout  
  3.   xmlns:android="http://schemas.android.com/apk/res/android"  
  4.   android:layout_width="fill_parent"  
  5.   android:layout_height="wrap_content">  
  6.     
  7.   <ProgressBar  
  8.     android:id="@+id/progress"  
  9.     android:layout_width="fill_parent"  
  10.     android:layout_height="wrap_content"  
  11.     style="?android:attr/progressBarStyleHorizontal"  
  12.   />  
  13. </LinearLayout>  
下载的时候用到了网络部分,所以要在AndroidManifest.xml中添加网络权限,代码如下:

[java]  view plain copy
  1. <uses-permission android:name="android.permission.INTERNET" />  

第五步:运行查看效果如下:

     

 图一:提示有最新包                                                                                   图二:点击开始下载

图三:下载完开始安装,我这里模拟器空间不足了。

OK~大功告成了,继续看球,阿森纳已经0:1了,希望范大将军救驾!大家晚安~稍后将会为大家分享更多内容,尽请期待!

源代码点击进入==>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值