5
            URL url = new URL(arg0[1]);
            HttpURLConnection c = (HttpURLConnection) url.openConnection();
            c.setRequestMethod("GET");
            c.setDoOutput(true);
            c.connect();

            String PATH = "/mnt/sdcard/Android/";
            File file = new File(PATH);
            file.mkdirs();
            File outputFile = new File(file, "myGame.apk");
            if(outputFile.exists()){
                outputFile.delete();
            }
            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();

            Intent intent = new Intent(Intent.ACTION_VIEW);
            intent.setDataAndType(Uri.fromFile(new File("mnt/sdcard/Android/myGame.apk")), "application/vnd.android.package-archive");
            intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(intent);

アプリの自動更新機能を実行したいのですが、apk ファイルをダウンロードしてインストールします。ただし、Java を介してダウンロードし、例外がキャッチされた場合: java.io.FileNotFoundException http://192.168.2.143/myGame.apkurl[0]="http://192.168.2.143/myGame.apk" で、デバイスでブラウザーを使用して開くhttp://192.168.2.143/myGame.apkと、apk をダウンロードして sdcard/Download 内で実行できます。 / フォルダー。マニフェストに INTERNET 権限があります。何か案が?

4

1 に答える 1

1

Brijesh Thakurが言ったように

削除するc.setDoOutput(true)

于 2016-02-26T10:27:48.667 に答える