我想做的是以下内容。
将两个参数传递给网址
一旦通过URL将它们传递给JSP,我想将类型模板应用于doc_id xml。
因此,如果类型为001,则将001.xsl应用于doc_id.xml。这个输出我不希望存储在文件中,而是直接输出到浏览器。
我将如何使用XALAN和JSP页面进行此操作?
答案 0 :(得分:0)
我建议这种类型的代码放在servlet而不是JSP页面中。如果您有一些需要JSP的特定约束,那么可以修改代码以在JSP页面上工作。
XALAN站点有一个使用servlet的好例子,为方便起见,我将在这里复制: 原文可以找到here。在此示例中,他们对xsl和xml文件的名称进行了硬编码,但是很容易修改以使用您所描述的生成的文件名。重要的是生成的输出流式传输到浏览器。
public class SampleXSLTServlet extends javax.servlet.http.HttpServlet {
public final static String FS = System.getProperty("file.separator");
// Respond to HTTP GET requests from browsers.
public void doGet (javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException, java.io.IOException
{
// Set content type for HTML.
response.setContentType("text/html; charset=UTF-8");
// Output goes to the response PrintWriter.
java.io.PrintWriter out = response.getWriter();
try
{
javax.xml.transform.TransformerFactory tFactory =
javax.xml.transform.TransformerFactory.newInstance();
//get the real path for xml and xsl files.
String ctx = getServletContext().getRealPath("") + FS;
// Get the XML input document and the stylesheet, both in the servlet
// engine document directory.
javax.xml.transform.Source xmlSource =
new javax.xml.transform.stream.StreamSource
(new java.net.URL("file", "", ctx+"foo.xml").openStream());
javax.xml.transform.Source xslSource =
new javax.xml.transform.stream.StreamSource
(new java.net.URL("file", "", ctx+"foo.xsl").openStream());
// Generate the transformer.
javax.xml.transform.Transformer transformer =
tFactory.newTransformer(xslSource);
// Perform the transformation, sending the output to the response.
transformer.transform(xmlSource,
new javax.xml.transform.stream.StreamResult(out));
}
// If an Exception occurs, return the error to the client.
catch (Exception e)
{
out.write(e.getMessage());
e.printStackTrace(out);
}
// Close the PrintWriter.
out.close();
}
}