从 File 更改为 BufferedImage 时出现 IOException
错误:未处理的异常类型 IOException。
File imgLoc = new File("player.png");
BufferedImage img = ImageIO.read(imgLoc);
如何从文件位置获取 bufferedImage?
Error: Unhandled exception type IOException.
File imgLoc = new File("player.png");
BufferedImage img = ImageIO.read(imgLoc);
How do I get a bufferedImage from a file location?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最好通过检查异常的堆栈跟踪来确定问题的原因。
作为临时措施,请将这两行替换为以下内容:
将一些诊断信息发送到标准错误。运行修改后的应用程序并发布结果输出。
可能的原因包括:
The cause of your problem is best determined by examining a stacktrace for the exception.
As a temporary measure, replace those two lines with the following:
to send some diagnostics to standard error. Run the modified app and post the resulting output.
Possible causes include:
该文件存在吗?您是否偶然从意外的目录中读取内容?
尝试 File.exists () 和/或 File.canRead()
Does the file exist ? Are you by chance reading from an unexpected directory ?
Try File.exists() and/or File.canRead()