应用更新

package com.school.utils;


import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;


import com.school.thesis.R;


import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.net.Uri;
import android.os.Environment;
import android.os.Handler;
import android.os.Message;
import android.text.Html;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ProgressBar;
import android.widget.TextView;


public class UpdateManger {


ReadXml xml = new ReadXml();// 读取TXT文件
// 应用程序Context
private Context mContext;
// 下载安装包的网络路径
private String apkUrl = "http://www.newloong.cn/upload/thesis.apk";
// 最新版本号
private String dname = "";
private Dialog noticeDialog;// 提示有软件更新的对话框
private Dialog downloadDialog;// 下载对话框
private String savePath = Environment.getExternalStorageDirectory() + "/MyDownload/";
private String saveFileName = savePath + "thesis_new.apk";
// 进度条与通知UI刷新的handler和msg常量
private ProgressBar mProgress;


private TextView tv_jindu;
private static final int DOWN_UPDATE = 1;
private static final int DOWN_OVER = 2;


private Update update;


private int progress;// 当前进度
private Thread downLoadThread; // 下载线程
// private boolean interceptFlag = false;// 用户取消下载
// 通知处理刷新界面的handler
private Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
switch (msg.what) {
case DOWN_UPDATE:
mProgress.setProgress(progress);
tv_jindu.setText("下载进度:" + progress + "%");
break;
case DOWN_OVER:
installApk();
break;
}
super.handleMessage(msg);
}
};


public UpdateManger(Context context, Update update) {
this.mContext = context;
this.update = update;

}


// 显示更新程序对话框,供主程序调用
public void checkUpdateInfo() {
showNoticeDialog();
}


// 对比版本号
public boolean jianCe(String name) {
dname = xml.checkVer();
System.out.println("old:" + name + ",and new:" + dname);
if (name.equals(dname)) {
return true;
} else {
return false;
}
}


private void showNoticeDialog() {
android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(mContext,R.style.Dialog2);// Builder,可以通过此builder设置改变AleartDialog的默认的主题样式及属性相关信息
builder.setTitle("更新提示");
builder.setMessage(
Html.fromHtml("<font color='#666666'>发现新版本" + dname + ",请下载!</font>"));
builder.setOnKeyListener(new DialogInterface.OnKeyListener() {

@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
dialog.dismiss();
update.add();
return true;
} else {
return false;
}
}
});
builder.setPositiveButton("下载", new OnClickListener() {
public void onClick(DialogInterface dialog, int which) {

showDownloadDialog();
dialog.dismiss();// 当取消对话框后进行操作一定的代码?取消对话框

}
});
builder.setNegativeButton("以后再说", new OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
update.add();
}
});
noticeDialog = builder.create();
noticeDialog.setCanceledOnTouchOutside(false);
noticeDialog.show();


}


protected void showDownloadDialog() {

android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(mContext,R.style.Dialog2);
builder.setTitle("软件版本更新");

final LayoutInflater inflater = LayoutInflater.from(mContext);
View v = inflater.inflate(R.layout.version_progress, null);
mProgress = (ProgressBar) v.findViewById(R.id.progress);
tv_jindu = (TextView) v.findViewById(R.id.tv_jindu);
builder.setView(v);// 设置对话框的内容为一个View


builder.setNegativeButton("取消", new OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
update.add();
}
});


builder.setOnKeyListener(new DialogInterface.OnKeyListener() {

@Override
public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
dialog.dismiss();
update.add();
// 此处把dialog dismiss掉,然后把本身的activity finish掉
// BarcodeActivity.this.finish();
return true;
} else {
return false;
}
}
});
downloadDialog = builder.create();
downloadDialog.setCanceledOnTouchOutside(false);
downloadDialog.show();
downloadApk();


}


private void downloadApk() {


downLoadThread = new Thread(mdownApkRunnable);
downLoadThread.start();


}


protected void installApk() {
File apkfile = new File(saveFileName);
if (!apkfile.exists()) {
apkfile.mkdirs();
return;
}
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file://" + apkfile.toString()), "application/vnd.android.package-archive");// File.toString()会返回路径信息
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mContext.startActivity(i);
}


private Runnable mdownApkRunnable = new Runnable() {
public void run() {
URL url;
try {
url = new URL(apkUrl);
URLConnection con = url.openConnection();
con.connect();
int length = con.getContentLength();
InputStream ins = con.getInputStream();


File file = new File(savePath);
if (!file.exists()) {
file.mkdir();
}
String apkFile = saveFileName;


File ApkFile = new File(apkFile);


FileOutputStream outStream = new FileOutputStream(ApkFile);
int count = 0;
byte buf[] = new byte[1024];
do {
int numread = ins.read(buf);
count += numread;
progress = (int) (((float) count / length) * 100);
// 下载进度
mHandler.sendEmptyMessage(DOWN_UPDATE);
if (numread <= 0) {
// 下载完成通知安装
mHandler.sendEmptyMessage(DOWN_OVER);
break;
}
outStream.write(buf, 0, numread);
} while (true);// 点击取消停止下载
// outStream.close();
// ins.close();
} catch (Exception e) {
e.printStackTrace();
}
}
};


public interface Update {
public void add();
}
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值