我有一组图片网址。我将其下载到位图。现在我想将这些图像存储到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();
}
}
但我没有将图像插入到SD卡中。我的代码有什么问题?请回复。提前谢谢。
答案 0 :(得分: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;
您还可以使用一些其他代码行检查名称中的重复项。 如果有帮助,请告诉我。
答案 1 :(得分:0)
您是否确保在Manifest.xml文件中设置了写入/读取外部存储设备的相应权限?
此外,代码是否以上述任何例外退出?打印比堆栈跟踪更具说明性的消息。像这样:
尝试{
} catch(FileNotFoundException e){
Log.v(this.toString(),“在块中捕获异常”);
}
或这些线上的东西..
HTH
斯利拉姆
答案 2 :(得分:0)
您的代码出现问题:
1)您正在使用文件名创建目录。相反,只使用'path'来尝试mkdir()
2)只将'file.getAbsolutePath()'不带“file://”传递给insertImage()函数
3)有insertImage的备用api,您无需在本地再创建一个文件。将位图直接传递给它。
希望这有帮助。