1

我有一组图片网址。我把它下载到位图。现在我想将这些图像存储到 sdcard/project 文件夹中。如果我没有这样的文件,我必须创建它。我现在所做的是:

String path = Environment.getExternalStorageDirectory().toString();
OutputStream fOut = null;
File file = new File(path, imageName);
if(!file.exists()) {
    file.mkdir();
    try {
        fOut = new FileOutputStream(file);
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fOut);
        fOut.flush();
        fOut.close();
        MediaStore.Images.Media.insertImage(getContentResolver(), "file://"
            + file.getAbsolutePath(), file.getName(), file.getName());

    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}   

但我没有将图像插入 sdcard。我的代码有什么问题?请回复。提前致谢。

4

3 回答 3

1

尝试使用以下代码:

    ByteArrayOutputStream bytes = new ByteArrayOutputStream();
    String fileName = edtNameImage.getText().toString().trim();//this can be changed
    if (fileName.equalsIgnoreCase("")) {
        Toast.makeText(context, "Fields cannot be left blank",
                Toast.LENGTH_SHORT).show();
        return false;
    }
    File file = new File(Environment.getExternalStorageDirectory()
            + File.separator + fileName);
    // write the bytes in file
    FileOutputStream fo;
    try {
        file.createNewFile();
        fo = new FileOutputStream(file);//snapshot image is the image to be stored.

        if (snapShotImage!=null)
        {
            snapShotImage.compress(Bitmap.CompressFormat.JPEG, 100, bytes);
        }else{
            return false;
        }
        fo.write(bytes.toByteArray());
        // ChartConstants.IMAGE_STORAGE++;
        fo.flush();
        fo.close();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    return true;

您还可以使用一些额外的代码行检查名称中的重复性。让我知道它是否有帮助。

于 2011-03-25T06:34:45.550 回答
0

您的代码存在问题:
1)您正在使用文件名创建目录。而是尝试仅使用“路径”的 mkdir()
2) 仅将不带“file://”的“file.getAbsolutePath()”传递给 insertImage() 函数3) insertImage
的替代 api ,您无需为其创建本地多一个文件。将位图直接传递给它。

希望这可以帮助。

于 2011-03-25T06:54:31.040 回答
0
  1. 您是否确保已在您的 Manifest.xml 文件中设置了用于写入/读取外部存储设备的适当权限?

  2. 此外,代码是否会因上述任何异常而退出?打印比堆栈跟踪更多的说明性消息。像这样:

    尝试 {
    } catch (FileNotFoundException e) {
    Log.v(this.toString(), "异常被块捕获");
    }

或者这些线上的东西..

HTH
斯里拉姆

于 2011-03-25T06:35:50.653 回答