<x:choose>
body content(<x:when>and<x:otherwise>subtags)
</x:choose>
<%@taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <c:import url="shopInfo.xml" var="xmlFile" charEncoding="gbk"/> <x:parse var="shopInfo" doc="${xmlFile}"></x:parse> <x:choose> <x:when select="$shopInfo/shops/shop[name='C語言中文網'][sellAmount/@value> 500000]">商業能手</x:when> <x:when select="$shopInfo/shops/shop[name='C語言中文網'][sellAmount/@value <500000][sellAmount/@value>100000]">身手小試</x:when> <x:otherwise>初學下海</x:otherwise> </x:choose>