读取文件系统

时间:2013-09-25 19:49:23

标签: android file

我试图将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());
    }  
}

0 个答案:

没有答案