日期:2014-05-17 浏览次数:20666 次
String htmlFilePath = "./file" + htmlName; request.getSession().setAttribute("htmlFilePath", htmlFilePath );
String htmlFilePath= (String)session.getAttribute("htmlFilePath"); <jsp:include page="<%=htmlFilePath %>"></jsp:include>
String imgPath = "./file" + imgName; request.getSession().setAttribute("imgPath ", imgPath );
String imgPath= (String)session.getAttribute("imgPath"); <img src='<%=imgPath>'></img>