我們偶爾會對自己的APP做更新壳猜,那么不免就需要把最新版本的app推送給用戶,所以今天動手實現(xiàn)一下app自動檢測版本及更新驰后。實現(xiàn)思路大致是這樣的:
1滩字、首先我們在服務器上建立一個version.txt文件,提供給客戶端最新版本的信息磅崭,內容如下:
//json數(shù)據(jù)格式
{"code":"2.0","update":"最新版本apk的地址"}
2儿子、在啟動頁中獲取本機版本,并開啟線程獲取服務器的version.txt,并解析出最新版本號與本機對比砸喻。(通常在與服務器交互前柔逼,我會先ping一下服務器,來確保服務器以及網(wǎng)絡可用割岛。)
3愉适、如果版本號不同,那么就提示用戶版本需要升級癣漆。
4维咸、當用戶同意升級,那么就下載最新版本APK惠爽,并自動安裝癌蓖。
大致思路就是這樣,接著上代碼疆股。
通過ping服務器费坊,判斷服務器是否可用。
/**
* 通過ping判斷是否可用
* @return
*/
public static boolean ping() {
try {
//服務器ip地址
String ip = "***";
Process p = Runtime.getRuntime().exec("ping -c 1 -w 100 " + ip);
InputStream input = p.getInputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(input));
StringBuffer stringBuffer = new StringBuffer();
String content;
while ((content = in.readLine()) != null) {
stringBuffer.append(content);
}
int status = p.waitFor();
if (status == 0) {
return true;
}
}
catch (IOException e) {}
catch (InterruptedException e) {}
return false;
}
從服務器獲取APP最新版本信息旬痹。
/**
* 獲取最新版本信息
* @return
* @throws IOException
* @throws JSONException
*/
private String getVersion() throws IOException, JSONException {
URL url = new URL("http://***/version.txt");
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setDoInput(true);
httpURLConnection.setDoOutput(true);
httpURLConnection.setReadTimeout(8 * 1000);
InputStream inputStream = httpURLConnection.getInputStream();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
String string;
string = bufferedReader.readLine();
//對json數(shù)據(jù)進行解析
JSONObject jsonObject = new JSONObject(string);
String strings = jsonObject.getString("code");
return strings;
}
彈出對話框附井,用戶點擊確定開始下載最新版本APK讨越,點擊取消不做任何動作。
/**
* 彈出對話框
*/
protected void showUpdataDialog() {
AlertDialog.Builder builer = new AlertDialog.Builder(this) ;
builer.setTitle("版本升級");
builer.setMessage("軟件更新");
//當點確定按鈕時從服務器上下載 新的apk 然后安裝
builer.setPositiveButton("確定", (dialog, which) -> downLoadApk());
//當點取消按鈕時不做任何舉動
builer.setNegativeButton("取消", (dialogInterface, i) -> {});
AlertDialog dialog = builer.create();
dialog.show();
}
開始從服務器下載APK
protected void downLoadApk() {
//進度條
final ProgressDialog pd;
pd = new ProgressDialog(this);
pd.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pd.setMessage("正在下載更新");
pd.show();
new Thread(){
@Override
public void run() {
try {
File file = getFileFromServer("http://***/v.apk", pd);
//安裝APK
installApk(file);
pd.dismiss(); //結束掉進度條對話框
} catch (Exception e) {
}
}}.start();
}
public static File getFileFromServer(String path, ProgressDialog pd) throws Exception{
//如果相等的話表示當前的sdcard掛載在手機上并且是可用的
if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
URL url = new URL(path);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setConnectTimeout(5000);
//獲取到文件的大小
pd.setMax(conn.getContentLength());
InputStream is = conn.getInputStream();
File file = new File(Environment.getExternalStorageDirectory(), "updata.apk");
FileOutputStream fos = new FileOutputStream(file);
BufferedInputStream bis = new BufferedInputStream(is);
byte[] buffer = new byte[1024];
int len ;
int total=0;
while((len =bis.read(buffer))!=-1){
fos.write(buffer, 0, len);
total+= len;
//獲取當前下載量
pd.setProgress(total);
}
fos.close();
bis.close();
is.close();
return file;
}
else{
return null;
}
}
最后通過Intent動作啟動安裝APK
protected void installApk(File file) {
Intent intent = new Intent();
//執(zhí)行動作
intent.setAction(Intent.ACTION_VIEW);
//執(zhí)行的數(shù)據(jù)類型
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
}
筆者能力有限永毅,不足之處歡迎指出把跨!