在程序启动的时候检测服务器上有没有对应版本更新,如果有更新,提示用户是否更新。
在程序启动的时候首先调用更新模块检测服务器上存放的版本号跟当前程序的版本号如果大于当前版本号,弹出更新对话框,如果用户选择更新,则显示当前更新状态,然后替换当前程序。
程序调用版本更新检测:
private UpdateManager updateMan; private ProgressDialog updateProgressDialog; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); //没有判断网路是否连接 //检查是否有更新 //如果有更新提示下载 updateMan = new UpdateManager(Update_TestActivity.this, appUpdateCb); updateMan.checkUpdate(); }
执行检测版本号以及回调更新提示
下载更新文件等实现:
package update.test; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import org.json.JSONArray; import org.json.JSONObject; import com.trinet.util.NetHelper; import android.content.Context; import android.content.Intent; import android.content.pm.PackageInfo; import android.content.pm.PackageManager.NameNotFoundException; import android.net.Uri; import android.os.Handler; import android.os.Message; import android.util.Log; public class UpdateManager { private String curVersion; private String newVersion; private int curVersionCode; private int newVersionCode; private String updateInfo; private UpdateCallback callback; private Context ctx; private int progress; private Boolean hasNewVersion; private Boolean canceled; //存放更新APK文件的路径 public static final String UPDATE_DOWNURL = "http://www.baidu.com/update/update_test.apk"; //存放更新APK文件相应的版本说明路径 public static final String UPDATE_CHECKURL = "http://www.baidu.com/update/update_verson.txt"; public static final String UPDATE_APKNAME = "update_test.apk"; //public static final String UPDATE_VERJSON = "ver.txt"; public static final String UPDATE_SAVENAME = "updateapk.apk"; private static final int UPDATE_CHECKCOMPLETED = 1; private static final int UPDATE_DOWNLOADING = 2; private static final int UPDATE_DOWNLOAD_ERROR = 3; private static final int UPDATE_DOWNLOAD_COMPLETED = 4; private static final int UPDATE_DOWNLOAD_CANCELED = 5; //从服务器上下载apk存放文件夹 private String savefolder = "/mnt/innerDisk/"; //private String savefolder = "/sdcard/"; //public static final String SAVE_FOLDER =Storage. // "/mnt/innerDisk"; public UpdateManager(Context context, UpdateCallback updateCallback) { ctx = context; callback = updateCallback; //savefolder = context.getFilesDir(); canceled = false; getCurVersion(); } public String getNewVersionName() { return newVersion; } public String getUpdateInfo() { return updateInfo; } private void getCurVersion() { try { PackageInfo pInfo = ctx.getPackageManager().getPackageInfo( ctx.getPackageName(), 0); curVersion = pInfo.versionName; curVersionCode = pInfo.versionCode; } catch (NameNotFoundException e) { Log.e("update", e.getMessage()); curVersion = "1.1.1000"; curVersionCode = 111000; } } public void checkUpdate() { hasNewVersion = false; new Thread(){ // *************************************************************** /** * @by wainiwann * */ @Override public void run() { Log.i("@@@@@", ">>>>>>>>>>>>>>>>>>>>>>>>>>>getServerVerCode() "); try { String verjson = NetHelper.httpStringGet(UPDATE_CHECKURL); Log.i("@@@@", verjson + "**************************************************"); JSONArray array = new JSONArray(verjson); if (array.length() > 0) { JSONObject obj = array.getJSONObject(0); try { newVersionCode = Integer.parseInt(obj.getString("verCode")); newVersion = obj.getString("verName"); updateInfo = ""; Log.i("newVerCode", newVersionCode + "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); Log.i("newVerName", newVersion + "@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); if (newVersionCode > curVersionCode) { hasNewVersion = true; } } catch (Exception e) { newVersionCode = -1; newVersion = ""; updateInfo = ""; } } } catch (Exception e) { Log.e("update", e.getMessage()); } updateHandler.sendEmptyMessage(UPDATE_CHECKCOMPLETED); }; // *************************************************************** }.start(); } public void update() { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType( Uri.fromFile(new File(savefolder, UPDATE_SAVENAME)), "application/vnd.android.package-archive"); ctx.startActivity(intent); } // +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ public void downloadPackage() { new Thread() { @Override public void run() { try { URL url = new URL(UPDATE_DOWNURL); HttpURLConnection conn = (HttpURLConnection)url.openConnection(); conn.connect(); int length = conn.getContentLength(); InputStream is = conn.getInputStream(); File ApkFile = new File(savefolder,UPDATE_SAVENAME); if(ApkFile.exists()) { ApkFile.delete(); } FileOutputStream fos = new FileOutputStream(ApkFile); int count = 0; byte buf[] = new byte[512]; do{ int numread = is.read(buf); count += numread; progress =(int)(((float)count / length) * 100); updateHandler.sendMessage(updateHandler.obtainMessage(UPDATE_DOWNLOADING)); if(numread <= 0){ updateHandler.sendEmptyMessage(UPDATE_DOWNLOAD_COMPLETED); break; } fos.write(buf,0,numread); }while(!canceled); if(canceled) { updateHandler.sendEmptyMessage(UPDATE_DOWNLOAD_CANCELED); } fos.close(); is.close(); } catch (MalformedURLException e) { e.printStackTrace(); updateHandler.sendMessage(updateHandler.obtainMessage(UPDATE_DOWNLOAD_ERROR,e.getMessage())); } catch(IOException e){ e.printStackTrace(); updateHandler.sendMessage(updateHandler.obtainMessage(UPDATE_DOWNLOAD_ERROR,e.getMessage())); } } }.start(); } public void cancelDownload() { canceled = true; } Handler updateHandler = new Handler() { @Override public void handleMessage(Message msg) { switch (msg.what) { case UPDATE_CHECKCOMPLETED: callback.checkUpdateCompleted(hasNewVersion, newVersion); break; case UPDATE_DOWNLOADING: callback.downloadProgressChanged(progress); break; case UPDATE_DOWNLOAD_ERROR: callback.downloadCompleted(false, msg.obj.toString()); break; case UPDATE_DOWNLOAD_COMPLETED: callback.downloadCompleted(true, ""); break; case UPDATE_DOWNLOAD_CANCELED: callback.downloadCanceled(); default: break; } } }; public interface UpdateCallback { public void checkUpdateCompleted(Boolean hasUpdate, CharSequence updateInfo); public void downloadProgressChanged(int progress); public void downloadCanceled(); public void downloadCompleted(Boolean sucess, CharSequence errorMsg); } }
需要连接服务器模块:
package com.trinet.util; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URI; import java.net.URL; import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.params.CoreProtocolPNames; import org.apache.http.params.HttpConnectionParams; import org.apache.http.params.HttpParams; import android.content.Context; import android.graphics.drawable.Drawable; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.util.Log; public class NetHelper { public static String httpStringGet(String url) throws Exception { return httpStringGet(url, "utf-8"); } /** * * * @param url * @return */ public static Drawable loadImage(String url) { try { return Drawable.createFromStream( (InputStream) new URL(url).getContent(), "test"); } catch (MalformedURLException e) { Log.e("exception", e.getMessage()); } catch (IOException e) { Log.e("exception", e.getMessage()); } return null; } public static String httpStringGet(String url, String enc) throws Exception { // This method for HttpConnection String page = ""; BufferedReader bufferedReader = null; try { HttpClient client = new DefaultHttpClient(); client.getParams().setParameter(CoreProtocolPNames.USER_AGENT, "android"); HttpParams httpParams = client.getParams(); HttpConnectionParams.setConnectionTimeout(httpParams, 3000); HttpConnectionParams.setSoTimeout(httpParams, 5000); HttpGet request = new HttpGet(); request.setHeader("Content-Type", "text/plain; charset=utf-8"); request.setURI(new URI(url)); HttpResponse response = client.execute(request); bufferedReader = new BufferedReader(new InputStreamReader(response .getEntity().getContent(), enc)); StringBuffer stringBuffer = new StringBuffer(""); String line = ""; String NL = System.getProperty("line.separator"); while ((line = bufferedReader.readLine()) != null) { stringBuffer.append(line + NL); } bufferedReader.close(); page = stringBuffer.toString(); Log.i("page", page); System.out.println(page + "page"); return page; } finally { if (bufferedReader != null) { try { bufferedReader.close(); } catch (IOException e) { Log.d("BBB", e.toString()); } } } } public static boolean checkNetWorkStatus(Context context) { boolean result; ConnectivityManager cm = (ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo netinfo = cm.getActiveNetworkInfo(); if (netinfo != null && netinfo.isConnected()) { result = true; Log.i("NetStatus", "The net was connected"); } else { result = false; Log.i("NetStatus", "The net was bad!"); } return result; } }
以及提示对话框:
package com.trinet.util; import java.lang.reflect.Field; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; import android.view.View; public class DialogHelper { public static void Alert(Context ctx, CharSequence title, CharSequence message, CharSequence okText, OnClickListener oklistener) { AlertDialog.Builder builder = createDialog(ctx, title, message); builder.setPositiveButton(okText, oklistener); builder.create().show(); } public static void Alert(Context ctx, int titleId, int messageId, int okTextId, OnClickListener oklistener) { Alert(ctx, ctx.getText(titleId), ctx.getText(messageId), ctx.getText(okTextId), oklistener); } public static void Confirm(Context ctx, CharSequence title, CharSequence message, CharSequence okText, OnClickListener oklistener, CharSequence cancelText, OnClickListener cancellistener) { AlertDialog.Builder builder = createDialog(ctx, title, message); builder.setPositiveButton(okText, oklistener); builder.setNegativeButton(cancelText, cancellistener); builder.create().show(); } public static void Confirm(Context ctx, int titleId, int messageId, int okTextId, OnClickListener oklistener, int cancelTextId, OnClickListener cancellistener) { Confirm(ctx, ctx.getText(titleId), ctx.getText(messageId), ctx.getText(okTextId), oklistener, ctx.getText(cancelTextId), cancellistener); } private static AlertDialog.Builder createDialog(Context ctx, CharSequence title, CharSequence message) { AlertDialog.Builder builder = new Builder(ctx); builder.setMessage(message); if(title!=null) { builder.setTitle(title); } return builder; } @SuppressWarnings("unused") private static AlertDialog.Builder createDialog(Context ctx,int titleId, int messageId) { AlertDialog.Builder builder = new Builder(ctx); builder.setMessage(messageId); builder.setTitle(titleId); return builder; } public static void ViewDialog(Context ctx, CharSequence title, View view, CharSequence okText, OnClickListener oklistener, CharSequence cancelText, OnClickListener cancellistener) { } public static void ViewDialog(Context ctx, int titleId, View view, int okTextId, OnClickListener oklistener, int cancelTextId, OnClickListener cancellistener) { ViewDialog(ctx, ctx.getText(titleId), view, ctx.getText(okTextId), oklistener, ctx.getText(cancelTextId), cancellistener); } // public static void SetDialogShowing(DialogInterface dialog, boolean showing) { try { Field field = dialog.getClass().getSuperclass().getDeclaredField("mShowing"); field.setAccessible(true); field.set(dialog, showing); } catch (Exception e) { e.printStackTrace(); } } }
下面是又更新的话执行回调函数提示用户:
// 自动更新回调函数 UpdateManager.UpdateCallback appUpdateCb = new UpdateManager.UpdateCallback() { public void downloadProgressChanged(int progress) { if (updateProgressDialog != null && updateProgressDialog.isShowing()) { updateProgressDialog.setProgress(progress); } } public void downloadCompleted(Boolean sucess, CharSequence errorMsg) { if (updateProgressDialog != null && updateProgressDialog.isShowing()) { updateProgressDialog.dismiss(); } if (sucess) { updateMan.update(); } else { DialogHelper.Confirm(Update_TestActivity.this, R.string.dialog_error_title, R.string.dialog_downfailed_msg, R.string.dialog_downfailed_btnnext, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { updateMan.downloadPackage(); } }, R.string.dialog_downfailed_btnnext, null); } } public void downloadCanceled() { // TODO Auto-generated method stub } public void checkUpdateCompleted(Boolean hasUpdate, CharSequence updateInfo) { if (hasUpdate) { DialogHelper.Confirm(Update_TestActivity.this, getText(R.string.dialog_update_title), getText(R.string.dialog_update_msg).toString() +updateInfo+ getText(R.string.dialog_update_msg2).toString(), getText(R.string.dialog_update_btnupdate), new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int which) { updateProgressDialog = new ProgressDialog( Update_TestActivity.this); updateProgressDialog .setMessage(getText(R.string.dialog_downloading_msg)); updateProgressDialog.setIndeterminate(false); updateProgressDialog .setProgressStyle(ProgressDialog.STYLE_HORIZONTAL); updateProgressDialog.setMax(100); updateProgressDialog.setProgress(0); updateProgressDialog.show(); updateMan.downloadPackage(); } },getText( R.string.dialog_update_btnnext), null); } } };
要记得给程序添加权限:
<uses-permission android:name="android.permission.INTERNET"></uses-permission> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
测试源码下载:
相关推荐
总之,实现Android程序自动更新功能涉及网络通信、文件下载、版本比较、用户交互等多个方面。通过合理设计和编码,可以为用户提供无缝的更新体验,同时确保应用始终处于最新状态。提供的完整`demo`源码是学习和实践...
在Android应用开发中,友盟(Umeng)是一款广泛使用的第三方统计分析平台,它提供了许多功能,包括但不限于用户行为分析、消息推送、自动更新服务等。本教程将深入讲解如何在Android项目中集成友盟的App自动更新模块...
总之,Android的自动更新功能是通过Google Play服务和开发者自定义策略相结合实现的,旨在为用户提供最新的应用体验和安全保障。理解并熟练运用这一机制,对于Android应用的持续优化和用户满意度提升至关重要。
这个压缩包“Android 应用程序自动更新源码.zip”很可能包含了一个实现自动更新机制的示例代码。以下是关于Android应用自动更新的一些关键知识点: 1. **Google Play服务中的Firebase App Invites**:Google Play...
在Android系统中,实现自动开关机涉及到多个层次的技术,包括系统权限、服务、定时任务以及对Android内核的深入理解。下面将详细讲解这个主题。 首先,我们要知道Android是一个基于Linux内核的操作系统,它的自动开...
在Android应用程序的开发中,确保应用能够及时更新和升级是至关重要的,这有助于修复已知问题,增强功能,以及提供更好的用户体验。本项目名为“Android应用程序的自动更新升级(自身升级、通过tomcat)”,是一个...
在"qt for android 更新APP"的场景下,我们讨论的是如何在Android应用程序内部实现更新功能。这通常涉及到以下几个关键知识点: 1. **自动检查更新**:应用启动时或在设定的时间间隔内,通过网络请求(通常是HTTP或...
在Android平台上,实现自动接听和挂断电话的功能主要涉及到电话管理和服务组件的使用。这个功能在某些场景下非常有用,比如在驾驶时自动接听电话,或者在自动化测试中模拟用户行为。下面我们将深入探讨如何在Android...
一、Android程序的自动更新 自动更新功能通常通过Google Play商店实现,但也可以通过自定义服务器或第三方更新库来完成。主要流程包括: 1. 检查更新:应用启动时或者在后台设定的时间间隔内,通过网络请求获取...
首先,让我们详细探讨Android程序的自动更新机制。在Android应用市场,如Google Play,开发者通常希望用户能及时获取应用的最新版本,以修复已知问题、增加新功能或提升性能。自动更新功能使得用户无需手动检查和...
**一、Android程序的自动更新** 自动更新是现代移动应用的标准特性,它确保用户的应用始终保持最新状态,接收修复的bug、新增的功能以及性能优化。在Android平台上,有多种实现自动更新的方式: 1. **Google Play ...
在Android平台上,应用软件的自动更新机制是提升用户体验和确保应用程序安全的重要功能。这个压缩包“Android 应用软件自动检查更新源码.zip”显然包含了实现这一机制的源代码。让我们详细探讨一下这个主题。 首先...
在Android应用中,模块化意味着将复杂的应用程序分解为多个独立、可管理的组件或模块,每个模块都有明确的责任和功能。这样做可以降低代码耦合度,便于测试、维护和复用。常见的模块包括数据访问层(如数据库操作)...
一、Android程序的自动更新 自动更新是确保用户始终运行最新版本应用的关键机制。它通常涉及到后台检查更新、下载新版本的APK文件以及在用户同意后进行安装。以下是实现这个功能的主要步骤: 1. **检查更新**:...
总结起来,Android程序的自动更新和基于GPS定位的轨迹存储是安卓开发中的两个重要功能。前者通过及时推送新版本,保证了应用的稳定性和安全性;后者则依赖于精准的地理位置信息,提供了丰富的应用场景,如导航、运动...
总的来说,实现Android程序中的收货地址管理需要综合运用数据库操作、UI设计、网络通信等多种技术,同时注重用户体验和代码的可维护性。通过理解和掌握这些知识点,开发者可以构建出高效、稳定的收货地址管理系统。
在这个“vlc-android实现截图,录制视频Dome程序”中,我们重点探讨如何利用VLC库在Android应用中实现视频播放、截图以及录制功能。 **一、VLC的Android集成** 在Android项目中集成VLC,你需要将提供的源码解压缩并...