上传者: 38702945
|
上传时间: 2021-12-16 15:31:31
|
文件大小: 33KB
|
文件类型: -
第一步:获取存储的路径 我们用/sdcard/Android/data/包名/的路径 方便我们测试查看
String path=MyApplication.getContextObject().getExternalFilesDir().toString();
File file=new File(path);
第二步:根据该文件中存储的路径信息在文件系统上创建一个新的空文件
File finalImageFile = new File(file, System.currentTimeMillis() + .jpg);
try {
finalImageFile.crea