java 返回图片到页面_html/css_WEB-ITnose
程序员文章站
2023-12-28 09:13:34
...
@RequestMapping(value = "/image/get")
public void getImage(HttpServletRequest request,HttpServletResponse response) {
FileInputStream fis = null;
response.setContentType("image/gif");
try {
OutputStream out = response.getOutputStream();
File file = new File("D:"+File.separator+"timg.jpg");
fis = new FileInputStream(file);
byte[] b = new byte[fis.available()];
fis.read(b);
out.write(b);
out.flush();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
public void getImage(HttpServletRequest request,HttpServletResponse response) {
FileInputStream fis = null;
response.setContentType("image/gif");
try {
OutputStream out = response.getOutputStream();
File file = new File("D:"+File.separator+"timg.jpg");
fis = new FileInputStream(file);
byte[] b = new byte[fis.available()];
fis.read(b);
out.write(b);
out.flush();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
推荐阅读
-
java 返回图片到页面_html/css_WEB-ITnose
-
如何在VS2008中将背景图片拉伸至整张页面而不是平铺_html/css_WEB-ITnose
-
不知大家遇到过这种问题么,一个层宽度设为100%,并设置背景图片,在浏览器中浏览,缩小窗口到滚动条出现,然后拖动滚动条到右侧,右侧的区域变成空白,怎么解决?_html/css_WEB-ITnose
-
为什么在html设置了禁用浏览器缓存,但点前进后退时页面还是 返回 From cache_html/css_WEB-ITnose
-
Java web页面静态化_html/css_WEB-ITnose
-
java+html+js上传图片到服务器对应文件夹中
-
页面引用小图片问题_html/css_WEB-ITnose
-
js-Js html5 实现点击返回,到指定页面?
-
js html 页面倒计时 精确到秒_html/css_WEB-ITnose
-
Java web求一个新闻发布页面_html/css_WEB-ITnose