亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

Android應(yīng)用的自動升級、更新模塊的實現(xiàn)完整方

系統(tǒng) 2133 0
看到很多人求自動更新功能的實現(xiàn)模塊
結(jié)合網(wǎng)上資源 給出完整解決方案加參考程序打包(源碼倉庫特點,必有打包工程{:4_84:})
希望自行實現(xiàn)整理
另如果你有好的代碼也可以分享出來不只是交換蘋果而已
希望多支持源碼倉庫 爭做eoe最好的版塊

不登高山,不知天之高也;

不臨深溪,不知地之厚也。

——《 荀子 ? 勸學







我們看到很多Android應(yīng)用都具有自動更新功能,用戶一鍵就可以完成軟件的升級更新。得益于Android系統(tǒng)的軟件包管理和安裝機制,這一功能實現(xiàn)起來相當簡單,下面我們就來實踐一下。首先給出界面效果:

0_1302075893OUW7.jpg

2011-6-23 10:43:54 上傳
下載附件 (27.02 KB)

1. 準備知識
在AndroidManifest.xml里定義了每個Android apk的版本標識:

  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是整型數(shù)字,versionName是字符串。由于version是給用戶看的,不太容易比較大小,升級檢查時,可以以檢查versionCode為主,方便比較出版本的前后大小。
那么,在應(yīng)用中如何讀取AndroidManifest.xml中的versionCode和versionName呢?可以使用PackageManager的API,參考以下代碼:
  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. public static String getVerName(Context context) {
  12. String verName = "";
  13. try {
  14. verName = context.getPackageManager().getPackageInfo(
  15. "com.myapp", 0).versionName;
  16. } catch (NameNotFoundException e) {
  17. Log.e(TAG, e.getMessage());
  18. }
  19. return verName;
  20. }
復制代碼

或者在AndroidManifest中將android:versionName="1.2.0"寫成android:versionName="@string/app_versionName",然后在values/strings.xml中添加對應(yīng)字符串,這樣實現(xiàn)之后,就可以使用如下代碼獲得版本名稱:
  1. public static String getVerName(Context context) {
  2. String verName = context.getResources()
  3. .getText(R.string.app_versionName).toString();
  4. return verName;
  5. }
復制代碼

同理,apk的應(yīng)用名稱可以這樣獲得:
  1. public static String getAppName(Context context) {
  2. String verName = context.getResources()
  3. .getText(R.string.app_name).toString();
  4. return verName;
  5. }
復制代碼

2. 流程框架

0_13020755289sMG.jpg

2011-6-23 10:50:15 上傳
下載附件 (13.3 KB)

3. 版本檢查
在服務(wù)端放置最新版本的apk文件,如:http://localhost/myapp/myapp.apk
同時,在服務(wù)端放置對應(yīng)此apk的版本信息調(diào)用接口或者文件,如:http://localhost/myapp/ver.json
ver.json中的內(nèi)容為:
  1. [{"appname":"jtapp12","apkname":"jtapp-12-updateapksamples.apk","verName":1.0.1,"verCode":2}]
復制代碼

然后,在手機客戶端上進行版本讀取和檢查:
  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. }
復制代碼

比較服務(wù)器和客戶端的版本,并進行更新操作。
  1. if (getServerVerCode()) {
  2. int vercode = Config.getVerCode(this); // 用到前面第一節(jié)寫的方法
  3. if (newVerCode > vercode) {
  4. doNewVersionUpdate(); // 更新新版本
  5. } else {
  6. notNewVersionShow(); // 提示當前為最新版本
  7. }
  8. }
復制代碼

詳細方法:
  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())// 設(shè)置內(nèi)容
  12. .setPositiveButton("確定",// 設(shè)置確定按鈕
  13. new DialogInterface.OnClickListener() {
  14. @Override
  15. public void onClick(DialogInterface dialog,
  16. int which) {
  17. finish();
  18. }
  19. }).create();// 創(chuàng)建
  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(", 發(fā)現(xiàn)新版本:");
  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. // 設(shè)置內(nèi)容
  40. .setPositiveButton("更新",// 設(shè)置確定按鈕
  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();// 創(chuàng)建
  60. // 顯示對話框
  61. dialog.show();
  62. }
復制代碼

4. 下載模塊
  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線程將下載對話框取消。
  1. void down() {
  2. handler.post(new Runnable() {
  3. public void run() {
  4. pBar.cancel();
  5. update();
  6. }
  7. });
  8. }
復制代碼

5. 安裝應(yīng)用
  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應(yīng)用發(fā)布到market上,那么,你會發(fā)現(xiàn)market內(nèi)建了類似的模塊,可以自動更新或者提醒你是否更新應(yīng)用。那么,對于你自己的應(yīng)用需要自動更新的話,自己內(nèi)建一個是不是更加方便了呢?本文提到的代碼大多是在UpdateActivity.java中實現(xiàn),為了能夠使更新過程更加友好,可以在最初launcher的Activity中建立一個線程,用來檢查服務(wù)端是否有更新。有更新的時候就啟動UpdateActivity,這樣的使用體驗更加平滑。

Android應(yīng)用的自動升級、更新模塊的實現(xiàn)完整方案+參考程序代嗎


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯(lián)系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發(fā)表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 色综合久久最新中文字幕 | 久草综合视频 | 久久综合欧美 | 一级毛片aa | 婷婷国产 | 欧美手机看片 | 99热在线只有精品 | 国产日本久久久久久久久婷婷 | 国产成人免费在线视频 | 国产成人亚洲综合网站不卡 | 女人18一级特级毛片免费看 | 五月婷婷色播 | 理论片 我不卡影院 | 一级毛片日韩 | freexxxx性大陆另类 | www色中色| 久久青草精品一区二区三区 | 97碰公开在线观看免费视频 | 亚洲一区二区三区香蕉 | 9re视频这里只有精品 | 国产一区二区在线免费观看 | 动漫美女撒尿 | 精品视频 九九九 | 伊人久久国产免费观看视频 | 久久久久久影院 | 99视频全部免费精品全部四虎 | 国内精品美女久久久久 | 亚洲国产高清视频在线观看 | 亚洲精品久久片久久 | 91热国内精品永久免费观看 | 毛片毛片毛片毛片 | 国产成人高清视频免费播放 | 九九久久国产精品免费热6 九九久久精品 | 中文字幕 国产 | 欧美黄页网 | 中文视频在线 | 久久久久久久99久久久毒国产 | 久久伊人久久 | 久久久久九九精品影院 | 天天爱添天天爱添天天爱添 | 久草在线新免费 |