1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
<!--
Displays the content of the file specified in request
parameter "filename".
<%-- Warning! Can be used to retrieve the source code for
any file in the 'standard-examples' application.
It is not advisable to insert any sensitive code
(even as an experiment) into this application --%>
-->
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="ex" uri="/jstl-examples-taglib" %>
<%--
Let's get back the URL as a String so we can use it to
demonstrate "c:import"
--%>
<% pageContext.setAttribute("filepath",
application.
getResource(request.getParameter("filename")).toExternalForm()); %>
<% pageContext.setAttribute("filename", request.getParameter("filename")); %>
<html>
<head>
<title>JSTL: Source code for <c:out value="${filename}"/></title>
</head>
<body bgcolor="#FFFFFF">
<h3>Source code for: ${filename}</h3>
<hr>
<c:import varReader="reader" url="${filepath}">
<ex:escapeHtml reader="${reader}"/>
</c:import>
<hr>
</body>
</html>
|