Android - 自动更新问题

发布于 2024-10-29 03:36:35 字数 979 浏览 6 评论 0原文

我使用此代码从 URL 保存 app.apk:

            Context ctx;
            InputStream input = new BufferedInputStream(url.openStream());

            FileOutputStream output = ctx.getApplicationContext().openFileOutput("myApp.apk", Context.MODE_WORLD_READABLE);

然后将其从输入保存到文件:

        byte data[] = new byte[1024];

        long total = 0;

        while ((count = input.read(data)) != -1) {
            output.write(data, 0, count);
        }

下载后,现在已成功完成,我想提示安装 - 我想我应该使用 FileInputStream,但我不知道究竟如何。

下载后,我有代码:

        Intent install=new Intent(Intent.ACTION_VIEW);
        install.setDataAndType(Uri.fromFile(xxx - AND HERE I AM STUCK), "application/vnd.android.package-archive");
        ctx.startActivity(install);

我尝试过 ctx.getApplicationContext().openFileInput("myApp.apk"),但 Uri.fromFile 需要文件,我给它 openFileInput。你知道如何解决吗?

谢谢

编辑:有人知道一些解决方案吗?

I use this code for saving app.apk from URL:

            Context ctx;
            InputStream input = new BufferedInputStream(url.openStream());

            FileOutputStream output = ctx.getApplicationContext().openFileOutput("myApp.apk", Context.MODE_WORLD_READABLE);

than I save it from input to file by:

        byte data[] = new byte[1024];

        long total = 0;

        while ((count = input.read(data)) != -1) {
            output.write(data, 0, count);
        }

And after downloading, which is successfuly finished now I want to prompt installation - I think I should use FileInputStream, but I don't know exactly how.

After downloading, I have code:

        Intent install=new Intent(Intent.ACTION_VIEW);
        install.setDataAndType(Uri.fromFile(xxx - AND HERE I AM STUCK), "application/vnd.android.package-archive");
        ctx.startActivity(install);

I have tried ctx.getApplicationContext().openFileInput("myApp.apk"), but Uri.fromFile needs file and I am giving it openFileInput. Do you know how to solve it?

Thx

Edit: anyobody knows some some solution?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野の 2024-11-05 03:36:35

来自: Android 获取应用程序的“主”数据目录

使用 getFilesDir() 返回openFileInput 保存文件的绝对路径。然后将其传递给您的 File() 构造函数。

From: Android Get Application's 'Home' Data Directory

Use getFilesDir() to return the absolute path to where openFileInput saved the file. Then pass this to your File() constructor.

柠檬 2024-11-05 03:36:35

我用这个:

intent.setDataAndType( Uri.parse("file://" +
    context.getFilesDir().getAbsolutePath() +
    "/" + update_file), ANDROID_PACKAGE);

它有效。

I use this:

intent.setDataAndType( Uri.parse("file://" +
    context.getFilesDir().getAbsolutePath() +
    "/" + update_file), ANDROID_PACKAGE);

and it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文