我正在尝试将 png 文件存储在手机的内部存储器中,但是在尝试了很多不同的方法后我遇到了很多问题。
我正在使用此代码:
private void storeImage(Bitmap image, String nombre) {
try {
File file = new File(nombre+".png");
file.createNewFile();
FileOutputStream fos = new FileOutputStream(file);
image.compress(Bitmap.CompressFormat.PNG, 100, fos);
fos.close();
} catch (FileNotFoundException e) {
Log.d(TAG, "File not found: " + e.getMessage());
} catch (IOException e) {
Log.d(TAG, "Error accessing file: " + e.getMessage());
}
}