Android应用强制更新APP的示例代码
Android应用强制更新的用途十分广泛,特别上刚上线的应用肯定会存在或多或少的bug,特别是涉及移动支付这一块的内容,如果出错了会造成比较大的损失,所以强制更新显得尤为重要。
一般来说,强制更新的策略就是:
应用启动时请求后台,后台发送应用最新版本的信息(包括应用版本号、名称、更新内容说明、下载包的服务器地址、是否强制更新的标志位)等等。
下面我们就将根据以上思路来写实现代码。
1.AndroidManifest配置版本信息
在AndroidManifest.xml里定义了每个Androidapk的版本标识:
<manifestxmlns:android="http://schemas.android.com/apk/res/android" package="com.demo" android:versionCode="1" android:versionName="1.0.0"> <application> </application> </manifest>
其中,package=”com.demo”是我们的包名;android:versionCode=”1”是版本代号,为整型数字;android:versionName=”1.0.0”是版本名称,为字符串,显示给用户看的。
当需要读取AndroidManifest文件中版本号和版本名称的时候,用packageManager就可以简单得到。代码如下所示:
publicstaticintgetVerCode(Contextcontext){
intverCode=-1;
try{
verCode=context.getPackageManager().getPackageInfo(
"com.demo",0).versionCode;
}catch(NameNotFoundExceptione){
Log.e(TAG,e.getMessage());
}
returnverCode;
}
publicstaticStringgetVerName(Contextcontext){
StringverName="";
try{
verName=context.getPackageManager().getPackageInfo(
"com.demo",0).versionName;
}catch(NameNotFoundExceptione){
Log.e(TAG,e.getMessage());
}
returnverName;
}
2.进行版本检查
在服务端放置最新版本的apk文件,如:http://localhost/mydemo/demo.apk
同时,在服务端放置对应此apk的版本信息调用接口或者文件,如:http://localhost/mydemo/ver.json
ver.json中的内容为:
[{“appname”:”jtapp12”,”apkname”:”jtapp-12-updateapksamples.apk”,”verName”:1.0.1,”verCode”:2}]
然后,在手机客户端上进行版本读取和检查:
privatebooleangetServerVer(){
try{
Stringverjson=NetworkTool.getContent(Config.UPDATE_SERVER+Config.UPDATE_VERJSON);
JSONArrayarray=newJSONArray(verjson);
if(array.length()>0){
JSONObjectobj=array.getJSONObject(0);
try{
newVerCode=Integer.parseInt(obj.getString("verCode"));
newVerName=obj.getString("verName");
}catch(Exceptione){
newVerCode=-1;
newVerName="";
returnfalse;
}
}
}catch(Exceptione){
Log.e(TAG,e.getMessage());
returnfalse;
}
returntrue;
}
比较服务器和客户端的版本,并进行更新操作。
if(getServerVerCode()){
intvercode=Config.getVerCode(this);//用到前面第一节写的方法
if(newVerCode>vercode){
doNewVersionUpdate();//更新新版本
}else{
notNewVersionShow();//提示当前为最新版本
}
}
调用方法:
privatevoidnotNewVersionShow(){
intverCode=Config.getVerCode(this);
StringverName=Config.getVerName(this);
StringBuffersb=newStringBuffer();
sb.append("当前版本:");
sb.append(verName);
sb.append("Code:");
sb.append(verCode);
sb.append(",\n已是最新版,无需更新!");
Dialogdialog=newAlertDialog.Builder(Update.this).setTitle("软件更新")
.setMessage(sb.toString())//设置内容
.setPositiveButton("确定",//设置确定按钮
newDialogInterface.OnClickListener(){
@Override
publicvoidonClick(DialogInterfacedialog,
intwhich){
finish();
}
}).create();//创建
//显示对话框
dialog.show();
}
privatevoiddoNewVersionUpdate(){
intverCode=Config.getVerCode(this);
StringverName=Config.getVerName(this);
StringBuffersb=newStringBuffer();
sb.append("当前版本:");
sb.append(verName);
sb.append("Code:");
sb.append(verCode);
sb.append(",发现新版本:");
sb.append(newVerName);
sb.append("Code:");
sb.append(newVerCode);
sb.append(",是否更新?");
Dialogdialog=newAlertDialog.Builder(Update.this)
.setTitle("软件更新")
.setMessage(sb.toString())
//设置内容
.setPositiveButton("更新",//设置确定按钮
newDialogInterface.OnClickListener(){
@Override
publicvoidonClick(DialogInterfacedialog,
intwhich){
pBar=newProgressDialog(Update.this);
pBar.setTitle("正在下载");
pBar.setMessage("请稍候...");
pBar.setProgressStyle(ProgressDialog.STYLE_SPINNER);
downFile(Config.UPDATE_SERVER+Config.UPDATE_APKNAME);
}
})
.setNegativeButton("暂不更新",
newDialogInterface.OnClickListener(){
publicvoidonClick(DialogInterfacedialog,
intwhichButton){
//点击"取消"按钮之后退出程序
finish();
}
}).create();//创建
//显示对话框
dialog.show();
}
更新下载:
voiddownFile(finalStringurl){
pBar.show();
newThread(){
publicvoidrun(){
HttpClientclient=newDefaultHttpClient();
HttpGetget=newHttpGet(url);
HttpResponseresponse;
try{
response=client.execute(get);
HttpEntityentity=response.getEntity();
longlength=entity.getContentLength();
InputStreamis=entity.getContent();
FileOutputStreamfileOutputStream=null;
if(is!=null){
Filefile=newFile(
Environment.getExternalStorageDirectory(),
Config.UPDATE_SAVENAME);
fileOutputStream=newFileOutputStream(file);
byte[]buf=newbyte[1024];
intch=-1;
intcount=0;
while((ch=is.read(buf))!=-1){
fileOutputStream.write(buf,0,ch);
count+=ch;
if(length>0){
}
}
}
fileOutputStream.flush();
if(fileOutputStream!=null){
fileOutputStream.close();
}
down();
}catch(ClientProtocolExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}
}
}.start();
}
下载完成,通过handler通知主ui线程将下载对话框取消。
voiddown(){
handler.post(newRunnable(){
publicvoidrun(){
pBar.cancel();
update();
}
});
}
安装应用
voidupdate(){
Intentintent=newIntent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(newFile(Environment
.getExternalStorageDirectory(),Config.UPDATE_SAVENAME)),
"application/vnd.android.package-archive");
startActivity(intent);
}
如果你将apk应用发布到market上,那么,你会发现market内建了类似的模块,可以自动更新或者提醒你是否更新应用。那么,对于你自己的应用需要自动更新的话,自己内建一个是不是更加方便了呢?本文提到的代码大多是在UpdateActivity.Java中实现,为了能够使更新过程更加友好,可以在最初launcher的Activity中建立一个线程,用来检查服务端是否有更新。有更新的时候就启动UpdateActivity,这样的使用体验更加平滑。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。