0

我需要通过程序下载一个 .apk 文件,然后启动它的活动。我正在使用的代码如下

private String downloadFile(String sourceURL, String destinationPath)
    {
        try {
            URL url = new URL(sourceURL);
            URLConnection connection = url.openConnection();
            connection.connect();

            // download the file
            InputStream input = new BufferedInputStream(url.openStream());
            OutputStream output = new FileOutputStream(destinationPath);

            byte data[] = new byte[1024];
            int count;
            while ((count = input.read(data)) > 0) {
                output.write(data, 0, count);
            }

            output.flush();
            output.close();
            input.close();

// EDITED here: 将文件设为 rw,否则将不会安装 apk 文件 Runtime.getRuntime().exec("chmod 666 " + destinationPath);

            message = "OK";
        }
        catch (MalformedURLException e) {
            message = "Malformed URL error: " + e.getMessage();
        }
        catch (ProtocolException e) {
            message = "Protocol exception error: " + e.getMessage();
        }
        catch (FileNotFoundException e) {
            message = "File not found error: " + e.getMessage();
        }
        catch (IOException e)   {
            e.printStackTrace();
            message = "Failed to download the file : " + e.getMessage();
        }
        return message;
    }

我提到我首先为文本文件调用该方法,然后为 apk 文件调用该方法。因此,每次我在本地处理文件时,我都知道出了什么问题。通过这种方式,我知道文本文件已正确下载。但是 .apk 文件已损坏。因为我在本地开发,可以访问 DDMS 和 localhost(IP:10.0.2.2),所以我可以肯定地说罪魁祸首是上面的代码。当我通过 DDMS 人为地将“下载”文件替换为原始 .apk 文件时,接下来的所有处理都可以。另外,当我比较原始和下载的 .apk 文件时,我有区别。我究竟做错了什么?谢谢 PS:搜索,我意识到,虽然是一个流行的问题,但没有一致的答案。就我而言,我将其确定为纯粹的下载方法问题。

4

1 回答 1

0

请参阅上方 EDITED 行下的答案。已实施,工作正常,可能对其他人有帮助

于 2012-10-06T16:56:43.040 回答