码迷,mamicode.com
首页 > Web开发 > 详细

读取本地图片写到jsp页面

时间:2014-05-13 13:15:20      阅读:305      评论:0      收藏:0      [点我收藏+]

标签:读取本地图片写到jsp页面

//读取本地图片写到jsp页面

File file = new File("D:/parking/A区12号.jpg");

ServletOutputStream out = null;

InputStream in = null;

       try {

           in = new FileInputStream(file);

           response().setContentType("multipart/form-data");

           int tempbyte;

           out = response().getOutputStream();

           while ((tempbyte = in.read()) != -1) {

               out.write(tempbyte);

           }

           out.flush();

       } catch (IOException e) {

           e.printStackTrace();

       } finally{

if(in != null){

try {

in.close();

} catch (IOException e) {

e.printStackTrace();

}

}

if(out != null){

try {

out.close();

} catch (IOException e) {

e.printStackTrace();

}

}

       }

//jsp页面

<img src=\‘#\‘" value="/vehicleParkInfo/inShowTDC/"/>


读取本地图片写到jsp页面,布布扣,bubuko.com

读取本地图片写到jsp页面

标签:读取本地图片写到jsp页面

原文地址:http://mawushou.blog.51cto.com/4620438/1410114

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!