A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈君 金牌黑马   /  2014-9-21 20:56  /  1784 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

一个良好的Android程序都应该有版本的更新,那怎样实现更新呢?今天就为大家介绍应用自动更新的全过程。
程序自动更新的流程大致如下:
程序启动 -> 适时后台检查更新 -> 链接远程服务器 -> 获取新版本信息
-> 比对当前版本 -> if(有更新) -> 显示更新提示对话框并显示更新的内容 -> 交与用户选择
下面是我做的一个简单demo,大家可以参考一下:
布局比较简单就不上代码了。
主程序代码:
  1. package com.cloay.update;

  2. import java.io.IOException;
  3. import java.net.HttpURLConnection;
  4. import java.net.MalformedURLException;
  5. import java.net.URL;

  6. import android.app.Activity;
  7. import android.app.AlertDialog;
  8. import android.content.DialogInterface;
  9. import android.content.pm.PackageManager.NameNotFoundException;
  10. import android.os.Bundle;
  11. import android.view.View;
  12. import android.view.View.OnClickListener;
  13. import android.widget.Button;
  14. import android.widget.Toast;

  15. /**
  16. * 程序自动更新 UpdateTestActivity.java
  17. *
  18. * @author Cloay 2011-11-23
  19. */
  20. public class UpdateTestActivity extends Activity {
  21. private Button button;

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

  26. button = (Button) findViewById(R.id.check);
  27. button.setOnClickListener(new OnClickListener() {

  28. @Override
  29. public void onClick(View v) {
  30. try {
  31. checkVersion();
  32. } catch (NameNotFoundException e) {
  33. // TODO Auto-generated catch block
  34. e.printStackTrace();
  35. }
  36. }
  37. });
  38. }

  39. /**
  40. * 检查是否需要更新程序
  41. *
  42. * @throws NameNotFoundException
  43. */
  44. private void checkVersion() throws NameNotFoundException {
  45. UpdateInfo updateInfo = new UpdateInfo();
  46. URL url;
  47. try {
  48. url = new URL("http://localhost:8080/update.xml");
  49. HttpURLConnection connection = (HttpURLConnection) url
  50. .openConnection();
  51. // connection.setConnectTimeout(5000);
  52. updateInfo = ParseXmlUtils.parseXml(connection.getInputStream());

  53. } catch (MalformedURLException e) {
  54. e.printStackTrace();
  55. } catch (IOException e) {
  56. e.printStackTrace();
  57. }
  58. if (updateInfo.getVersion().equals(VersionUtil.getVersionName(this))) {
  59. Toast.makeText(this, "版本相同,不需要升级!", Toast.LENGTH_SHORT).show();
  60. } else {
  61. showUpdateDialog(updateInfo);
  62. }
  63. }

  64. private void showUpdateDialog(UpdateInfo updateInfo) {
  65. AlertDialog alertDialog = new AlertDialog.Builder(this)
  66. .setTitle("提示检测到新版本,确定升级吗?").setIcon(R.drawable.ask)
  67. .setMessage(updateInfo.getDescription())
  68. .setPositiveButton("确定", new DialogInterface.OnClickListener() {
  69. @Override
  70. public void onClick(DialogInterface dialog, int which) {
  71. dialog.cancel();
  72. }
  73. })
  74. .setNegativeButton("取消", new DialogInterface.OnClickListener() {

  75. @Override
  76. public void onClick(DialogInterface dialog, int which) {
  77. dialog.cancel();
  78. }
  79. }).create();
  80. alertDialog.show();
  81. }
  82. }
复制代码

这里说明一下:远程服务器放置一个xml文件,用来说明当前新版本的信息。包括版本号,新版本功能说明,新版下载链接。
xml解析工具代码:
  1. package com.cloay.update;

  2. import java.io.IOException;
  3. import java.io.InputStream;

  4. import javax.xml.parsers.DocumentBuilder;
  5. import javax.xml.parsers.DocumentBuilderFactory;
  6. import javax.xml.parsers.ParserConfigurationException;

  7. import org.w3c.dom.Document;
  8. import org.w3c.dom.Element;
  9. import org.w3c.dom.NodeList;
  10. import org.xml.sax.SAXException;

  11. /**
  12. * 解析Xml文件 ParseXmlUtils.java
  13. *
  14. * @author Cloay 2011-11-7
  15. */
  16. public class ParseXmlUtils {
  17. /**
  18. * 通过InputStream 解析文件
  19. *
  20. * @param in
  21. * @return
  22. */
  23. public static UpdateInfo parseXml(InputStream in) {
  24. UpdateInfo updateInfo = new UpdateInfo();
  25. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  26. DocumentBuilder db = null;
  27. try {
  28. db = dbf.newDocumentBuilder();
  29. Document doc = null;
  30. doc = db.parse(in);
  31. Element root = doc.getDocumentElement();
  32. NodeList resultNode = root.getElementsByTagName("info");
  33. for (int i = 0; i < resultnode.getlength();="" i++)="" {="" element="" res="(Element)" resultnode.item(i);="" updateinfo.setversion(res.getelementsbytagname("version")="" .item(0).getfirstchild().getnodevalue());="" updateinfo.seturl(res.getelementsbytagname("url").item(0)="" .getfirstchild().getnodevalue());="" updateinfo.setdescription(res="" .getelementsbytagname("description").item(0)="" .getfirstchild().getnodevalue());="" }="" }="" catch="" (parserconfigurationexception="" e)="" {="" e.printstacktrace();="" }="" catch="" (saxexception="" e)="" {="" e.printstacktrace();="" }="" catch="" (ioexception="" e)="" {="" e.printstacktrace();="" }="" return="" updateinfo;="" }="" }="">updateInfo实体:

  34. package com.cloay.update;

  35. /**
  36. * 更新信息实体类 UpdateInfo.java
  37. *
  38. * @author Cloay 2011-11-23
  39. */
  40. public class UpdateInfo {
  41. private String version; // 版本号
  42. private String url; // 新版本存放url路径
  43. private String description; // 更新说明信息,比如新增什么功能特性等

  44. public String getVersion() {
  45. return version;
  46. }

  47. public void setVersion(String version) {
  48. this.version = version;
  49. }

  50. public String getUrl() {
  51. return url;
  52. }

  53. public void setUrl(String url) {
  54. this.url = url;
  55. }

  56. public String getDescription() {
  57. return description;
  58. }

  59. public void setDescription(String description) {
  60. this.description = description;
  61. }
  62. }
复制代码

获取当前已安装版本信息:
  1. package com.cloay.update;

  2. import android.content.Context;
  3. import android.content.pm.PackageInfo;
  4. import android.content.pm.PackageManager;
  5. import android.content.pm.PackageManager.NameNotFoundException;

  6. /**
  7. * 版本工具类 VersionUtil.java
  8. *
  9. * @author Cloay 2011-11-23
  10. */
  11. public class VersionUtil {
  12. /**
  13. * 获取版本号
  14. *
  15. * @param context
  16. * 上下文
  17. * @return
  18. * @throws NameNotFoundException
  19. */
  20. public static String getVersionName(Context context)
  21. throws NameNotFoundException {
  22. // 获取PackageManager 实例
  23. PackageManager packageManager = context.getPackageManager();
  24. // 获得context所属类的包名,0表示获取版本信息
  25. PackageInfo packageInfo = packageManager.getPackageInfo(
  26. context.getPackageName(), 0);
  27. return packageInfo.versionName;
  28. }
  29. }
  30. 整个过程并不麻烦,许多地方已经详细注释了,就写那么多。
复制代码

1 个回复

倒序浏览
这是什么东西??
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马