IllegalStateException

来源:互联网 发布:农业总产值数据不统一 编辑:程序博客网 时间:2024/04/29 04:47
response.setContentType("image/jpg");
FileInputStream in = new FileInputStream(new File("c:/123.jpg"));
byte[] buf = new byte[1024];
int len = 0;
while ((len = in.read(buf)) != -1) {
response.getOutputStream().write(buf, 0, len);

}

response字节流 字符流



0 0
原创粉丝点击