use of javax.xml.transform.Transformer in project jdk8u_jdk by JetBrains.
the class XSLT method main.
public static void main(String[] args) throws Exception {
ByteArrayOutputStream resStream = new ByteArrayOutputStream();
TransformerFactory trf = TransformerFactory.newInstance();
Transformer tr = trf.newTransformer(new StreamSource(System.getProperty("test.src", ".") + "/" + args[1]));
String res, expectedRes;
tr.transform(new StreamSource(System.getProperty("test.src", ".") + "/" + args[0]), new StreamResult(resStream));
res = resStream.toString();
System.out.println("Transformation completed. Result:" + res);
if (!res.replaceAll("\\s", "").equals(args[2]))
throw new RuntimeException("Incorrect transformation result. Expected:" + args[2] + " Observed:" + res);
}
use of javax.xml.transform.Transformer in project jdk8u_jdk by JetBrains.
the class NamespacePrefixTest method testReuseTransformer.
@Test
public void testReuseTransformer() throws Exception {
final TransformerFactory tf = TransformerFactory.newInstance();
final Source xslsrc = new StreamSource(new StringReader(XSL));
final Transformer t = tf.newTransformer(xslsrc);
for (int i = 0; i < TRANSF_COUNT; i++) {
checkResult(doTransformation(t));
}
}
use of javax.xml.transform.Transformer in project jdk8u_jdk by JetBrains.
the class TransformerTest method testBug8169112.
/**
* @bug 8169112
* @summary Test compilation of large xsl file with outlining.
*
* This test merely compiles a large xsl file and tests if its bytecode
* passes verification by invoking the transform() method for
* dummy content. The test succeeds if no Exception is thrown
*/
@Test
public final void testBug8169112() throws FileNotFoundException, TransformerException {
TransformerFactory tf = TransformerFactory.newInstance();
String xslFile = getClass().getResource("Bug8169112.xsl").toString();
Transformer t = tf.newTransformer(new StreamSource(xslFile));
String xmlIn = "<?xml version=\"1.0\"?><DOCROOT/>";
ByteArrayInputStream bis = new ByteArrayInputStream(xmlIn.getBytes());
ByteArrayOutputStream bos = new ByteArrayOutputStream();
t.transform(new StreamSource(bis), new StreamResult(bos));
}
use of javax.xml.transform.Transformer in project jdk8u_jdk by JetBrains.
the class JAXPSAXParserTest method testTransform.
public final void testTransform() {
String data = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<r>\n" + " <e/>\n" + "</r>\n";
// #5064280 workaround
String IDENTITY_XSLT_WITH_INDENT = "<xsl:stylesheet version='1.0' " + "xmlns:xsl='http://www.w3.org/1999/XSL/Transform' " + "xmlns:xalan='http://xml.apache.org/xslt' " + "exclude-result-prefixes='xalan'>" + "<xsl:output method='xml' indent='yes' xalan:indent-amount='4'/>" + "<xsl:template match='@*|node()'>" + "<xsl:copy>" + "<xsl:apply-templates select='@*|node()'/>" + "</xsl:copy>" + "</xsl:template>" + "</xsl:stylesheet>";
try {
//Skip the default XMLReader
System.setProperty("org.xml.sax.driver", "com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser");
StringWriter sw = new StringWriter();
TransformerFactory tf = TransformerFactory.newInstance();
Transformer t = tf.newTransformer(new StreamSource(new StringReader(IDENTITY_XSLT_WITH_INDENT)));
Result result = new StreamResult(sw);
t.transform(new StreamSource(new StringReader(data)), result);
success("JAXPSAXParserTest passed");
} catch (Exception e) {
/**
* JAXPSAXParser throws NullPointerException since the jaxp 1.5 security
* manager is not initialized when JAXPSAXParser is instantiated using
* the default constructor.
*/
fail(e.toString());
} finally {
System.clearProperty("org.xml.sax.driver");
}
}
use of javax.xml.transform.Transformer in project jdk8u_jdk by JetBrains.
the class XPathNegativeZero method xform.
private static String xform(final String xml, final String xsl) throws Exception {
final TransformerFactory tf = TransformerFactory.newInstance();
final Source xslsrc = new StreamSource(new File(xsl));
final Templates tmpl = tf.newTemplates(xslsrc);
final Transformer t = tmpl.newTransformer();
StringWriter writer = new StringWriter();
final Source src = new StreamSource(new File(xml));
final Result res = new StreamResult(writer);
t.transform(src, res);
return writer.toString();
}
Aggregations