Latest web development tutorials

<X: out> tag

Biblioteca JSP Standard Tag Biblioteca JSP Standard Tag

<X: out> tag visualizza i risultati di un'espressione XPath, e <% =%> funzioni simili.

sintassi

<x:out select="<string>" escapeXml="<true|false>"/>

proprietà

<X: out> tag ha i seguenti attributi:

proprietà descrizione Se necessario difetto
selezionare espressione XPath da calcolare, di solito utilizzando le variabili XPath è no
escapeXml Se ignorare i caratteri speciali XML no vero


Esempi Demo

L'esempio seguente utilizza il <x: out> e <x: parse> tag:

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%@ 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 标签</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>

I risultati sono i seguenti:

BOOKS INFO:
The title of the first book is: Padam History 
The price of the second book: 2000

Biblioteca JSP Standard Tag Biblioteca JSP Standard Tag