Jsp-jstl-xml-out-tag

提供:Dev Guides
移動先:案内検索

JSTL-XML <x:out>タグ

*<x:out>* タグは、XPath式の結果を表示します。 *<%=%>* JSP構文と同じように機能します。

属性

*<x:out>* タグには次の属性があります-
Attribute Description Required Default
select XPath expression to evaluate as a string, often using XPath variables Yes None
escapeXml True if the tag should escape special XML characters No true

タグ(a) <x:out> 、(b) <x:parse> をカバーする例を見てみましょう。

<%@ 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>JSTL x:out Tags</title>
   </head>

   <body>
      <h3>Books Info:</h3>

      <c:set var = "xmltext">
         <books>
            <book>
               <name>Padam History</name>
               <author>ZARA</author>
               <price>100</price>
            </book>

            <book>
               <name>Great Mistry</name>
               <author>NUHA</author>
               <price>2000</price>
            </book>
         </books>
      </c:set>

      <x:parse xml = "${xmltext}" var = "output"/>
      <b>The title of the first book is</b>:
      <x:out select = "$output/books/book[1]/name"/>
      <br>

      <b>The price of the second book</b>:
      <x:out select = "$output/books/book[2]/price"/>

   </body>
</html>

上記のコードは、次の結果を生成します-

Books Info:
The title of the first book is: Padam History
The price of the second book: 2000