Computer >> 컴퓨터 >  >> 프로그램 작성 >> 프로그램 작성

JSP에서 XPath 표현식 결과를 인쇄하는 방법은 무엇입니까?

<시간/>

태그는 XPath 표현식의 결과를 표시합니다. <%=%>과(와) 동일한 기능을 합니다. JSP 구문.

속성

태그에는 다음과 같은 속성이 있습니다. -

속성 설명 필수 기본값
선택 종종 XPath 변수를 사용하여 문자열로 평가할 XPath 표현식 없음
escapeXml 태그가 특수 XML 문자를 이스케이프해야 하는 경우 참 아니요 사실

예시

(a) 태그를 다루는 예를 들어 보겠습니다. , (b) .

<%@ taglib prefix = "c" uri = "https://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix = "x" uri = "https://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