App文件路径
2020-05-16 本文已影响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()