读取本地图片写到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/"/>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。