文章列表
直接启动tomcat时:
项目系统登陆页面验证码不出来,后台出现:javax.imageio.IIOException: Can't create output stream!错误。
用eclipse启动tomcat没有问题。
下面是代码:
ImageIO.write(image, "jpeg", response.getOutputStream());
后来改成:
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(response.getOutputStream());
encoder.encode( ...