App應用的通用功能

     App中有不少通用的功能,如設置模塊,有緩存、無圖模式、版本更新等一些通用的功能,與你們分享一下其中的版本檢查更新,在咱們的App中能自動檢查更新升級。緩存

     首先咱們要先得到咱們應用當前版本,接着從服務器得到應用的最新版本,兩個一比較若是最新版本高於當前版本就同升級更新。
服務器


    代碼實現:
app

    得到當前版本:
ide

    

public static int getCurrVersion(Context context){url

PackageManager pm = context.getPackageManager();spa

try {ip

PackageInfo info = pm.getPackageInfo(contextutf-8

.getPackageName(), 0);get

return info.versionCode;it

} catch (NameNotFoundException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

return 0;

}

    從服務器得到最新版本:

    

public static UpdataInfo getUpdataInfo(InputStream is) throws Exception{     

  XmlPullParser  parser = Xml.newPullParser();       

   parser.setInput(is, "utf-8");//設置解析的數據源       7.    int type = parser.getEventType();     

   UpdataInfo info = new UpdataInfo();//實體      9.    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()); //獲取該文件的信息      18.            }     

         break;     

      }     

       type = parser.next();     

  }     

   return info;     

}

從服務器下載apk:   

1.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;     

    }     

而後進行安裝

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);    

}    

相關文章
相關標籤/搜索