Latest web development tutorials

<: Fuera X> etiqueta

JSP Standard Tag Library JSP Standard Tag Library

etiqueta: <X a cabo> muestra los resultados de una expresión XPath, y <% =%> funciones similares.

sintaxis

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

propiedad

<X: Fuera> tiene los siguientes atributos:

propiedad descripción Si es necesario defecto
seleccionar expresión XPath que se calcula, por lo general el uso de variables XPath es no
escapeXml Ya sea para ignorar los caracteres XML especiales no verdadero


Los ejemplos de demostración

En el siguiente ejemplo se utiliza el <x: out> y <x: analizar> etiqueta:

<%@ 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>

Los resultados son como sigue:

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

JSP Standard Tag Library JSP Standard Tag Library