今天我必须处理一件困难的事情。
我启动相机并希望将拍摄的图像直接保存到我的内部存储器中,而不将其移入其中。
File targetDir = new File(getApplicationContext().getFilesDir()+File.separator+"PROJECTMAIN"+File.separator+"SUBFORDER");
targetDir.mkdirs(); //create the folder if they don't exist
File externalFile = new File(targetDir, "picturename.jpg");
Uri imageURI = Uri.fromFile(externalFile);
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, imageURI);
startActivityForResult(takePictureIntent, actionCode);
似乎如果我尝试将它们直接保存到内部存储器中,相机会在拍完照片后忽略我对“确定”按钮的点击。我认为“内部”URI存在问题,因为如果我使用Environment.getExternalStorageDirectory()
代替getApplicationContext().getFilesDir()
进行extra_output,一切正常,但之后我必须将文件移动到内部存储中(移动过程适用于“getApplicationContext()。getFilesDir()”)
当我拍照并按下确定按钮继续使用内部URI时,相机没有做任何事情......我无法相信在Android中存储会有困难。
有什么想法吗?也许相机只允许将图片保存到外部存储器?
答案 0 :(得分:3)
尝试以下代码
File dir= context.getDir("dirname", Context.MODE_PRIVATE); //Creates Dir inside internal memory
File file= new File(dir, "filename"); //It has directory details and file name
FileOutputStream fos = new FileOutputStream(file);
答案 1 :(得分:0)
对于更高版本的Android 7.0,请使用此代码
<application
...>
<activity>
....
</activity>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.your.package.fileProvider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
现在在xml资源文件夹中创建一个文件,
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path path="Android/data/com.your.package/" name="files_root" />
<external-path path="." name="external_storage_root" />
</paths>
然后每当用于相机意图使用时,
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri contentUri = FileProvider.getUriForFile(getContext(), "com.your.package.fileProvider", newFile);
intent.setDataAndType(contentUri, type);
} else {
intent.setDataAndType(Uri.fromFile(newFile), type);
}