1. 程式人生 > >Android自動檢測版本及自動升級

Android自動檢測版本及自動升級

步驟:

1.檢測當前版本的資訊AndroidManifest.xml-->manifest-->android:versionName。

2.從伺服器獲取版本號(版本號存在於xml檔案中)並與當前檢測到的版本進行匹配,如果不匹配,提示使用者進行升級,如果匹配則進入程式主介面。

3.當提示使用者進行版本升級時,如果使用者點選了確定,系統將自動從伺服器上下載並進行自動升級,如果點選取消將進入程式主介面。

效果圖:

      

    

獲取當前程式的版本號:

	/*
	 * 獲取當前程式的版本號 
	 */
	private String getVersionName() throws Exception{
		//獲取packagemanager的例項 
		PackageManager packageManager = getPackageManager();
		//getPackageName()是你當前類的包名,0代表是獲取版本資訊
		PackageInfo packInfo = packageManager.getPackageInfo(getPackageName(), 0);
	    return packInfo.versionName; 
	}
獲取伺服器端的版本號:
	/*
	 * 用pull解析器解析伺服器返回的xml檔案 (xml封裝了版本號)
	 */
	public static UpdataInfo getUpdataInfo(InputStream is) throws Exception{
		XmlPullParser  parser = Xml.newPullParser();  
		parser.setInput(is, "utf-8");//設定解析的資料來源 
		int type = parser.getEventType();
		UpdataInfo info = new UpdataInfo();//實體
		while(type != XmlPullParser.END_DOCUMENT ){
			switch (type) {
			case XmlPullParser.START_TAG:
				if("version".equals(parser.getName())){
					info.setVersion(parser.nextText());	//獲取版本號
				}else if ("url".equals(parser.getName())){
					info.setUrl(parser.nextText());	//獲取要升級的APK檔案
				}else if ("description".equals(parser.getName())){
					info.setDescription(parser.nextText());	//獲取該檔案的資訊
				}
				break;
			}
			type = parser.next();
		}
		return info;
	}
從伺服器下載apk:
	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;
		}
	}


匹配、下載、自動安裝:
	/*
	 * 從伺服器獲取xml解析並進行比對版本號 
	 */
	public class CheckVersionTask implements Runnable{

		public void run() {
			try {
				//從資原始檔獲取伺服器 地址 
				String path = getResources().getString(R.string.serverurl);
				//包裝成url的物件 
				URL url = new URL(path);
				HttpURLConnection conn =  (HttpURLConnection) url.openConnection(); 
				conn.setConnectTimeout(5000);
				InputStream is =conn.getInputStream(); 
				info =  UpdataInfoParser.getUpdataInfo(is);
				
				if(info.getVersion().equals(versionname)){
					Log.i(TAG,"版本號相同無需升級");
					LoginMain();
				}else{
					Log.i(TAG,"版本號不同 ,提示使用者升級 ");
					Message msg = new Message();
					msg.what = UPDATA_CLIENT;
					handler.sendMessage(msg);
				}
			} catch (Exception e) {
				// 待處理 
				Message msg = new Message();
				msg.what = GET_UNDATAINFO_ERROR;
				handler.sendMessage(msg);
				e.printStackTrace();
			} 
		}
	}
	
	Handler handler = new Handler(){
		
		@Override
		public void handleMessage(Message msg) {
			// TODO Auto-generated method stub
			super.handleMessage(msg);
			switch (msg.what) {
			case UPDATA_CLIENT:
				//對話方塊通知使用者升級程式 
				showUpdataDialog();
				break;
			case GET_UNDATAINFO_ERROR:
				//伺服器超時 
				Toast.makeText(getApplicationContext(), "獲取伺服器更新資訊失敗", 1).show();
				LoginMain();
				break;	
			case DOWN_ERROR:
				//下載apk失敗
				Toast.makeText(getApplicationContext(), "下載新版本失敗", 1).show();
				LoginMain();
				break;	
			}
		}
	};
	
	/*
	 * 
	 * 彈出對話方塊通知使用者更新程式 
	 * 
	 * 彈出對話方塊的步驟:
	 * 	1.建立alertDialog的builder.  
	 *	2.要給builder設定屬性, 對話方塊的內容,樣式,按鈕
	 *	3.通過builder 建立一個對話方塊
	 *	4.對話方塊show()出來  
	 */
	protected void showUpdataDialog() {
		AlertDialog.Builder builer = new Builder(this) ; 
		builer.setTitle("版本升級");
		builer.setMessage(info.getDescription());
		//當點確定按鈕時從伺服器上下載 新的apk 然後安裝 
		builer.setPositiveButton("確定", new OnClickListener() {
		public void onClick(DialogInterface dialog, int which) {
				Log.i(TAG,"下載apk,更新");
				downLoadApk();
			}   
		});
		//當點取消按鈕時進行登入
		builer.setNegativeButton("取消", new OnClickListener() {
			public void onClick(DialogInterface dialog, int which) {
				// TODO Auto-generated method stub
				LoginMain();
			}
		});
		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 = DownLoadManager.getFileFromServer(info.getUrl(), pd);
					sleep(3000);
					installApk(file);
					pd.dismiss(); //結束掉進度條對話方塊
				} catch (Exception e) {
					Message msg = new Message();
					msg.what = DOWN_ERROR;
					handler.sendMessage(msg);
					e.printStackTrace();
				}
			}}.start();
	}
	
	//安裝apk 
	protected void installApk(File file) {
		Intent intent = new Intent();
		//執行動作
		intent.setAction(Intent.ACTION_VIEW);
		//執行的資料型別
		intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
		startActivity(intent);
	}
	
	/*
	 * 進入程式的主介面
	 */
	private void LoginMain(){
		Intent intent = new Intent(this,MainActivity.class);
		startActivity(intent);
		//結束掉當前的activity 
		this.finish();
	}


UpdataInfo:

public class UpdataInfo {
	private String version;
	private String url;
	private String description;
	public String getVersion() {
		return version;
	}
	public void setVersion(String version) {
		this.version = version;
	}
	public String getUrl() {
		return url;
	}
	public void setUrl(String url) {
		this.url = url;
	}
	public String getDescription() {
		return description;
	}
	public void setDescription(String description) {
		this.description = description;
	}
}


update.xml:

<?xml version="1.0" encoding="utf-8"?>
<info>
	<version>2.0</version>
	<url>http://192.168.1.187:8080/mobilesafe.apk</url>
	<description>檢測到最新版本,請及時更新!</description>
</info>
瞭解更多資訊請關注微信:caaz01