xslt4.jsp
<%@ page contentType="text/html; charset=euc-jp" %>
<%@ taglib uri="jruntags" prefix="jrun" %>
<%@ include file="html/header.html" %>
<table width="100%">
<tr>
<td><b>XSLT タグ: ( 外部 XML ソースを併用しての id 属性の使用 )</b>( <a href="html/xslt4_jsp.html">ソースの表示</a> )
</td>
</tr>
<tr><td>
<jrun:xslt xml="table.xml" xsl="table.xsl" id="xslout"/>
<jrun:param id="xslout" type="java.io.BufferedReader"/>
<%
String str = null;
while ((str = xslout.readLine()) != null) {
out.println(str);
}
%>
</td></tr>
<tr>
<td align="left"> <br> <font size="2"><a href="xslt3.jsp">戻る</a></font> </td>
</tr>
</table>
<%@ include file="html/footer.html" %>