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()
网友评论