Standard Syntax : <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %>
| Attributes: | |
| select | Defines xPath expression. |
| escapeXml | Determines that some
special characters in resulting string should be converted to their
corresponding character entity codes or not. Its default value is true. |
out_xmlJstlTag.jsp
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml" %> <html>
<head>
<title>Example of x:out tag</title>
</head>
<body>
<c:import var="importFile" url="employee.xml"/>
<x:parse var="doc" doc="${importFile}"/>
<table border=1>
<tr>
<th>Given Xml Document</th>
</tr>
<tr>
<td><pre><x:out select="$importFile"/></pre></td>
</tr>
</table>
</body>
</html>
|
Output :

Download Source Code
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Use of tag of JSTL
Post your Comment