什么是java io异常,java.io.IOException异常:打开失败:EINVAL(无效参数)保存图像到外部存储时...

This is my code:

private boolean writeToSD(Bitmap bm, String url) {

if (canIWriteOnSD()) {

File sd = Environment.getExternalStorageDirectory();

File dest = new File(sd, "MoveInBlue/");

try {

url = urlCleaner(url);

if (!dest.exists()) {

dest.mkdir();

}

File file = new File(dest, url + ".png");

if (!file.exists()) {

file.createNewFile();

}

FileOutputStream out = new FileOutputStream(file);

bm.compress(Bitmap.CompressFormat.PNG, 90, out);

out.flush();

out.close();

return true;

} catch (Exception e) {

e.printStackTrace();

// Do nothing

}

}

return false;

}

PROBLEM SOLVED:

urlCleaner now returns url.substring(url.lastIndexOf('?')+1), and everything works as intended.

The exception is actually thrown at file.createNewFile(); and I don't really know why.

Thank you very much.

(urlCleaner just removes the http://... from the url and leaves the php tags)

Here's the LogCat:

07-09 13:57:13.479: W/System.err(5715): java.io.IOException: open failed: EINVAL (Invalid argument)

07-09 13:57:13.479: W/System.err(5715): at java.io.File.createNewFile(File.java:940)

07-09 13:57:13.479: W/System.err(5715): at com.moveinblue.planner.asynctask.ImageDownloader.writeToSD(ImageDownloader.java:459)

07-09 13:57:13.479: W/System.err(5715): at com.moveinblue.planner.asynctask.ImageDownloader.access$2(ImageDownloader.java:448)

07-09 13:57:13.479: W/System.err(5715): at com.moveinblue.planner.asynctask.ImageDownloader$BitmapDownloaderTask.onPostExecute(ImageDownloader.java:270)

07-09 13:57:13.479: W/System.err(5715): at com.moveinblue.planner.asynctask.ImageDownloader$BitmapDownloaderTask.onPostExecute(ImageDownloader.java:1)

07-09 13:57:13.479: W/System.err(5715): at android.os.AsyncTask.finish(AsyncTask.java:602)

07-09 13:57:13.479: W/System.err(5715): at android.os.AsyncTask.access$600(AsyncTask.java:156)

07-09 13:57:13.479: W/System.err(5715): at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:615)

07-09 13:57:13.479: W/System.err(5715): at android.os.Handler.dispatchMessage(Handler.java:99)

07-09 13:57:13.479: W/System.err(5715): at android.os.Looper.loop(Looper.java:137)

07-09 13:57:13.479: W/System.err(5715): at android.app.ActivityThread.main(ActivityThread.java:4575)

07-09 13:57:13.489: W/System.err(5715): at java.lang.reflect.Method.invokeNative(Native Method)

07-09 13:57:13.489: W/System.err(5715): at java.lang.reflect.Method.invoke(Method.java:511)

07-09 13:57:13.489: W/System.err(5715): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:789)

07-09 13:57:13.489: W/System.err(5715): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:556)

07-09 13:57:13.489: W/System.err(5715): at dalvik.system.NativeStart.main(Native Method)

07-09 13:57:13.489: W/System.err(5715): Caused by: libcore.io.ErrnoException: open failed: EINVAL (Invalid argument)

07-09 13:57:13.489: W/System.err(5715): at libcore.io.Posix.open(Native Method)

07-09 13:57:13.489: W/System.err(5715): at libcore.io.BlockGuardOs.open(BlockGuardOs.java:110)

07-09 13:57:13.489: W/System.err(5715): at java.io.File.createNewFile(File.java:933)

07-09 13:57:13.489: W/System.err(5715): ... 15 more

解决方案

The string url contains illegal characters for a filename. You'll need to cleanup the filename by removing the illegal characters.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值