(android实战)应用在线版本更新

Step One 应用系统配置文件----应用版本配置信息

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="TP.NationalTest"
      android:versionCode="4"
      android:versionName="1.4">
    <uses-sdk android:minSdkVersion="4" />

versionCode :版本号

versionName:版本名称

minSdkVersion:最小SDK版本

Step Two 后台验证当前应用版本是否要更新

    /*检测应用版本*/
    private void CheckAppEdtion()
    {
        //判断网络连接,如连接
          //Step One  判断当前是否有网络连接,
        if(!NetWorkUtility.CheckConnection(this))
        {
            return;
        }
        //获取网络平台的版本信息
        CAppInfo model=AppDataServiceHelper.GetAppEdtionInfo(ProjectConstant.AppID);


        //比较版本信息,有新版本 弹出 对话框
        
        if(model!=null)
        {


         try {   
             PackageInfo info = this.getPackageManager().getPackageInfo(this.getPackageName(), 0);   
             int oldVersion = info.versionCode;
             int newVersion = Integer.parseInt(model.Edition);
             if(newVersion > oldVersion){   
                  //创建更新对话框,并弹出
                 AppUpdateDialog.CreateRegisterAlert(this);
                 }  
             } catch (Exception e) {   
             // TODO Auto-generated catch block   
             e.printStackTrace();   
            } 
        }
    }

Step THree 弹出对话框 ,用户选择是否要更新APK

    static ProgressDialog  m_Dialog;
    static Context m_context=null ;
    static AlertDialog appupdatedialog=null;
    /*创建查看单题对话框*/
    public static void CreateRegisterAlert(Context context)
    {
         m_context=context;
          Dialog dialog = new AlertDialog.Builder(context).setTitle("系统更新")   
          .setMessage("已有新版本,是否更新?")   
          .setPositiveButton("确定",new DialogInterface.OnClickListener() {    
              public void onClick(DialogInterface dialog, int which) {   
                 m_Dialog=ProgressDialog.show(m_context, "请等待...", "正在更新,请稍后...",true);
                 mRegsiterHandler.sleep(1000);
              }   
          })   
          .setNegativeButton("取消", new DialogInterface.OnClickListener() {    
              public void onClick(DialogInterface dialog, int which) {   
                
              }   
          }).create();   
      dialog.show();   
    }

 Step four 下载APK,并更新应用版本

     /*
     *定时注册程序
     * */
    private static RegsiterHandler mRegsiterHandler = new RegsiterHandler();
    
   static  class RegsiterHandler extends Handler {
        @Override
        public void handleMessage(Message msg) {
            try{
                String url="http://xx.xx.xx.xx/gointel/nationaltest.html";
                HttpClient client = new DefaultHttpClient();     
                HttpGet get = new HttpGet(url);     
                HttpResponse response;     
                
                 response = client.execute(get);     
                 HttpEntity entity = response.getEntity();     
                    long length = entity.getContentLength();     
                    InputStream is = entity.getContent();     
                    FileOutputStream fileOutputStream = null;     
                    if (is != null) {     
     
                        File file = new File(Environment     
                                .getExternalStorageDirectory(), "nationaltest.apk");     
                        fileOutputStream = new FileOutputStream(file);     
                       
     
                        byte[] buf = new byte[1024];     
                        int ch = -1;     
                        while ((ch = is.read(buf)) != -1) {     
                            fileOutputStream.write(buf, 0, ch);     
                        }     
     
                    }     
                    fileOutputStream.flush();     
                    if (fileOutputStream != null) {     
                        fileOutputStream.close();     
                    }  
                    
            }
             catch(Exception ex)
              {
                
               }
            finally{
                m_Dialog.cancel();
            }
            install();
            
        }
        public void sleep(long delayMillis) {
            this.removeMessages(0);
            sendMessageDelayed(obtainMessage(0), delayMillis);
        }
    };
   
    
    private static void install() {       
        Intent i = new Intent();   
        //i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);     
        i.setAction(Intent.ACTION_VIEW);       
        i.setDataAndType(Uri.fromFile(new File("/sdcard/nationaltest.apk")),       
                "application/vnd.android.package-archive");       
        m_context.startActivity(i);     
        //finish();   
    }

原文地址:点击打开链接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值