美文网首页
App文件路径

App文件路径

作者: 荞麦穗 | 来源:发表于2020-05-16 20:47 被阅读0次
    String str1=MainActivity.this.getFilesDir().getPath();
    String str2=MainActivity.this.getCacheDir().getPath();
    

    对应路径

    //com.example.encryptdemo应用程序包名
    /data/data/com.example.encryptdemo/files
    /data/data/com.example.encryptdemo/cache
    

    Assets文件夹下图片读取流

    InputStream is=MainActivity.this.getResources().getAssets().open("decode.jpg");
    

    外部sdCard路径

    Environment.getExternalStorageDirectory().getPath()
    

    相关文章

      网友评论

          本文标题:App文件路径

          本文链接:https://www.haomeiwen.com/subject/lstpgxtx.html