A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 章闽 中级黑马   /  2012-10-20 17:39  /  951 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 章闽 于 2012-10-20 17:40 编辑

in = new BufferedInputStream(httpUrl.getInputStream());
java.awt.image.BufferedImage img = javax.imageio.ImageIO.read(in);
String filename=filepath+"/"+imgname;
File file = new File(filename);
if (!file.exists()) {
FileOutputStream out = new FileOutputStream(file);
byte[] buf = new byte[1024];
int len = 0;
while ((len = in.read(buf)) != -1) {
out.write(buf, 0, len);
}
}
去掉第二行代码之后是正常的,加上第二行代码in这个输入流就读不到任何数据了,为什么?

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马