为了账号安全,请及时绑定邮箱和手机立即绑定

Android:以编程方式安装.apk

Android:以编程方式安装.apk

慕标5832272 2019-06-05 13:46:13
Android:以编程方式安装.apk我在我的帮助下做了这个Android下载二进制文件问题和在Android上以编程方式安装应用程序.我想立即进行自动更新和自动安装。它是本地的,所以它是非市场应用。这是我的代码:public void Update(String apkurl){     try {         URL url = new URL(apkurl);         HttpURLConnection c = (HttpURLConnection) url.openConnection();         c.setRequestMethod("GET");         c.setDoOutput(true);         c.connect();         String PATH = Environment.getExternalStorageDirectory() + "/download/";         File file = new File(PATH);         file.mkdirs();         File outputFile = new File(file, "app.apk");         FileOutputStream fos = new FileOutputStream(outputFile);         InputStream is = c.getInputStream();         byte[] buffer = new byte[1024];         int len1 = 0;         while ((len1 = is.read(buffer)) != -1) {             fos.write(buffer, 0, len1);         }         fos.close();         is.close();//till here, it works fine - .apk is download to my sdcard in download file         Intent promptInstall = new Intent(Intent.ACTION_VIEW)             .setData(Uri.parse(PATH+"app.apk"))             .setType("application/android.com.app");         startActivity(promptInstall);//installation is not working     } catch (IOException e) {         Toast.makeText(getApplicationContext(), "Update error!", Toast.LENGTH_LONG).show();     }}我的权限是INTERNET, WRITE_EXTERNAL_STORAGE, INSTALL_PACKAGES,和DELETE_PACKAGES.当意图promptInstall,则应用程序崩溃=/那么,我是缺少权限,还是代码不正确,还是有更好的方法来做到这一点?
查看完整描述

3 回答

?
交互式爱情

TA贡献1712条经验 获得超3个赞

这个问题非常有用,但不要忘记在您的模拟器中安装SD卡,如果您不这样做,它是不工作的。

我在发现这件事之前浪费了时间。


查看完整回答
反对 回复 2019-06-05
  • 3 回答
  • 0 关注
  • 485 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信