当前位置: 代码迷 >> HTML/CSS >> jsp 显示服务端返回的html 文件及图片 有关问题
  详细解决方案

jsp 显示服务端返回的html 文件及图片 有关问题

热度:376   发布时间:2012-08-30 09:55:54.0
jsp 显示服务端返回的html 文件及图片 问题
采用servlet 和 jsp 包含 html 和 图片 的文件 显示,代码如下:

显示html 文件:

sevlet 代码:

String htmlFilePath = "./file" + htmlName;
request.getSession().setAttribute("htmlFilePath", htmlFilePath );



jsp 代码:

String htmlFilePath= (String)session.getAttribute("htmlFilePath");
<jsp:include page="<%=htmlFilePath %>"></jsp:include>



显示图片 文件:

sevlet 代码:

String imgPath = "./file" + imgName;
request.getSession().setAttribute("imgPath ", imgPath );



jsp 代码:
String imgPath= (String)session.getAttribute("imgPath");
<img src='<%=imgPath>'></img>




  相关解决方案