Android 是否保留 .apk 文件?如果是在哪里?

Does Android keep the .apk files? if so where?(Android 是否保留 .apk 文件?如果是在哪里?)
本文介绍了Android 是否保留 .apk 文件?如果是在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

android 从 Marketplace 安装应用程序后,是否保留 .apk 文件?

After android installs an application from the Marketplace, does it keep the .apk file?

Android 是否有一个标准的位置来保存此类文件?

Is there a standard location where Android would keep such files?

推荐答案

预装的应用程序位于 /system/app 文件夹中.用户安装的应用程序位于 /data/app 中.我猜你不能访问,除非你有一个根电话.我这里没有root手机,但试试这个代码:

Preinstalled applications are in /system/app folder. User installed applications are in /data/app. I guess you can't access unless you have a rooted phone. I don't have a rooted phone here but try this code out:

public class Testing extends Activity {
    private static final String TAG = "TEST";
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        File appsDir = new File("/data/app");

        String[] files = appsDir.list();

        for (int i = 0 ; i < files.length ; i++ ) {
            Log.d(TAG, "File: "+files[i]);

        }
    }

它确实列出了我根深蒂固的 htc 魔法和 emu 中的 apk.

It does lists the apks in my rooted htc magic and in the emu.

这篇关于Android 是否保留 .apk 文件?如果是在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Android release APK crash with java.lang.AssertionError: impossible in java.lang.Enum(Android 发布 APK 因 java.lang.AssertionError 崩溃:在 java.lang.Enum 中不可能)
Finished with Non Zero Exit Value 3(以非零退出值 3 结束)
On gradle:3.0.0 More than one file was found with OS independent path #39;META-INF/ASL2.0#39;(在 gradle:3.0.0 上找到多个文件,其独立于操作系统的路径为“META-INF/ASL2.0)
Android : app loading library at runtime on Lollipop but not IceCreamSandwich(Android:运行时在 Lollipop 上而不是 IceCreamSandwich 上的应用程序加载库)
buildConfigField depending on flavor + buildType(buildConfigField 取决于风味 + buildType)
How do I suppress warnings when compiling an android library with gradle?(使用 gradle 编译 android 库时如何抑制警告?)