Android软件更新安装。

时间:2022-08-29 14:26:24

app的开发有一个问题是避免不了的,那就是软件的升级维护。

这里我在查过一些资料和写了一个升级帮助类。使用很方便。直接导入就可以了。

( VersionBean.class为更新地址返回的数据对象,我这里返回的是Json对象,因此该帮助类需要导入Gson 包)

更新地址返回的数据如下,对应这VersionBean.class  的内容

Android软件更新安装。

还需要注意的是获取当前用用的版本号  context.getPackageManager().getPackageInfo("com.lyf.petition", 0).versionCode;  其中 com.lyf.petition为软件包名

版本号应写在 AndroidManifest.xml文件中

Android软件更新安装。

使用的方式也很简单:

UpdateManager manager = new UpdateManager(getActivity());
manager.sendRequestWithHttpURLConnection(); 下面是整个帮助类。
 package until;

 import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.content.pm.PackageManager.NameNotFoundException;
import android.net.Uri;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ProgressBar;
import android.widget.Toast; import com.google.gson.Gson;
import com.lyf.petition.R; 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 bean.VersionBean; public class UpdateManager { // 使用方式
// UpdateManager manager = new UpdateManager(getActivity());
// manager.sendRequestWithHttpURLConnection(); /* 下载中 */
private static final int DOWNLOAD = ;
/* 下载结束 */
private static final int DOWNLOAD_FINISH = ;
/* 有新版本跟新 */
private static final int DOWNLOAD_TIP = ;
/* 有新版本跟新 */
private static final int NOTUPDATED = ;
/* 保存对象信息 */
private VersionBean versionBean;
/* 下载保存路径 */
private String mSavePath;
/* 记录进度条数量 */
private int progress;
/* 是否取消更新 */
private boolean cancelUpdate = false; private Context mContext;
/* 更新进度条 */
private ProgressBar mProgress;
private AlertDialog mDownloadDialog; private Handler mHandler = new Handler() {
public void handleMessage(Message msg) {
switch (msg.what) {
case DOWNLOAD_TIP:
showNoticeDialog();
break;
// 正在下载
case DOWNLOAD:
// 设置进度条位置
mProgress.setProgress(progress);
break;
case DOWNLOAD_FINISH:
// 安装文件
installApk();
break;
case NOTUPDATED:
Toast.makeText(mContext, "当前是最新版本", Toast.LENGTH_LONG).show();
break;
default:
break;
}
};
}; public UpdateManager(Context context) {
this.mContext = context;
} /**
* 检测软件更新
*/
public void checkUpdate() {
if (isUpdate()) {
// 显示提示对话框
showNoticeDialog();
} else {
Toast.makeText(mContext, "当前是最新版本", Toast.LENGTH_SHORT).show();
}
} public void sendRequestWithHttpURLConnection() {
new Thread(new Runnable() {
@Override
public void run() {
if (isUpdate()) {
mHandler.sendEmptyMessage(DOWNLOAD_TIP);
}else {
mHandler.sendEmptyMessage(NOTUPDATED);
}
}
}).start();
} /**
* 检查软件是否有更新版本
*/
public boolean isUpdate() { URL url = null;
try {
url = new URL(WebServiceHelper.UpDatedUri);
} catch (MalformedURLException e1) {
e1.printStackTrace();
}
HttpURLConnection conn = null;
try {
conn = (HttpURLConnection) url.openConnection();
conn.connect();
} catch (IOException e1) {
e1.printStackTrace();
}
conn.setConnectTimeout();
InputStream inStream = null;
String version="";
try {
inStream = conn.getInputStream();
version = IOHelper.inputStreamToString(inStream);
} catch (IOException e1) {
e1.printStackTrace();
}
if(version!="") {
// 获取当前软件版本
int versionCode = getVersionCode(mContext);
Gson gson = new Gson();
versionBean = gson.fromJson(version, VersionBean.class);
if (versionBean.getVersionCode() > versionCode) {
return true;
}
}
return false;
} /**
* 获取软件版本号
*/
private int getVersionCode(Context context) {
int versionCode = ;
try {
// 获取软件版本号,对应AndroidManifest.xml下android:versionCode
versionCode = context.getPackageManager().getPackageInfo("com.lyf.petition", ).versionCode;
} catch (NameNotFoundException e) {
e.printStackTrace();
}
return versionCode;
} /**
* 显示软件更新对话框
*/
private void showNoticeDialog() {
// 构造对话框
AlertDialog.Builder builder = new Builder(mContext);
builder.setTitle(versionBean.getVersionName());
builder.setMessage(versionBean.getUpdateContent());
// 更新
builder.setPositiveButton("更新",
new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
// 显示下载对话框
showDownloadDialog();
}
});
// 稍后更新
builder.setNegativeButton("稍后更新",
new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});
Dialog noticeDialog = builder.create();
noticeDialog.show();
} /**
* 显示软件下载对话框
*/
private void showDownloadDialog() {
// 构造软件下载对话框
AlertDialog.Builder builder = new Builder(mContext);
builder.setTitle("正在更新");
//builder.setMessage(mHashMap.get("content"));
// 给下载对话框增加进度条
final LayoutInflater inflater = LayoutInflater.from(mContext);
View v = inflater.inflate(R.layout.softupdate_progress, null);
mProgress = (ProgressBar) v.findViewById(R.id.update_progress);
builder.setView(v);
// 取消更新
builder.setNegativeButton("取消更新",
new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
// 设置取消状态
cancelUpdate = true;
}
});
builder.setCancelable(false);
mDownloadDialog = builder.create();
mDownloadDialog.setCanceledOnTouchOutside(false); // 设置弹出框失去焦点是否隐藏,即点击屏蔽其它地方是否隐藏
mDownloadDialog.show(); // 下载文件
downloadApk();
} /**
* 下载apk文件
*/
private void downloadApk() {
// 启动新线程下载软件
new downloadApkThread().start();
} /**
* 下载文件线程
*/
private class downloadApkThread extends Thread {
@Override
public void run() {
try {
// 判断SD卡是否存在,并且是否具有读写权限
if (Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
// 获得存储卡的路径
String sdpath = Environment.getExternalStorageDirectory()
+ "/";
mSavePath = sdpath + "download";
URL url = new URL(versionBean.getUpdateUri());
// 创建连接
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.connect();
// 获取文件大小
int length = conn.getContentLength();
// 创建输入流
InputStream is = conn.getInputStream(); File file = new File(mSavePath);
// 判断文件目录是否存在
if (!file.exists()) {
file.mkdir();
}
File apkFile = new File(mSavePath,versionBean.getVersionName());
FileOutputStream fos = new FileOutputStream(apkFile);
int count = ;
// 缓存
byte buf[] = new byte[];
// 写入到文件中
do {
int numread = is.read(buf);
count += numread;
// 计算进度条位置
progress = (int) (((float) count / length) * );
// 更新进度
mHandler.sendEmptyMessage(DOWNLOAD);
if (numread <= ) {
// 下载完成
mHandler.sendEmptyMessage(DOWNLOAD_FINISH);
break;
}
// 写入文件
fos.write(buf, , numread);
} while (!cancelUpdate);// 点击取消就停止下载.
fos.close();
is.close();
}
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
// 取消下载对话框显示
mDownloadDialog.dismiss();
}
}; /**
* 安装APK文件
*/
private void installApk() {
File apkfile = new File(mSavePath,versionBean.getVersionName());
if (!apkfile.exists()) {
return;
}
// 通过Intent安装APK文件
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file://" + apkfile.toString()),
"application/vnd.android.package-archive");
mContext.startActivity(i);
}
}

这里,我把我进度条弹窗的布局也放在这里,觉得丑的朋友,可以自行修改。

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"> <ProgressBar
android:id="@+id/update_progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="50dp" />
</LinearLayout>