读取本地图片写到jsp页面

2020-12-13 03:11

阅读:428

标签:读取本地图片写到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页面


读取本地图片写到jsp页面,搜素材,soscw.com

读取本地图片写到jsp页面

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

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


评论


亲,登录后才可以留言!