<%@ page language="java" contentType="text/html;charset=Windows-31J"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%>
<c:import var="xmlDoc" url="WEB-INF/sample.xml" charEncoding="Windows-31J" />
<x:parse var="xdoc" doc="${xmlDoc}" />
<html><body>
<x:choose>
<x:when select="$xdoc/sample/data1 = 'ABCD'"> DATA1=ABCD </x:when>
<x:when select="$xdoc/sample/data1 = 'EFGH'"> DATA1=EFGH </x:when>
<x:otherwise> DATA1=OTHER </x:otherwise>
</x:choose> ・・・・・ (1)
<br>
<x:choose>
<x:when select="$xdoc/sample/data2 > 2"> DATA2>2 </x:when>
<x:when select="$xdoc/sample/data2 = 2"> DATA2=2 </x:when>
<x:otherwise> DATA2<2 </x:otherwise>
</x:choose> ・・・・・ (2)
<br>
</body></html> |