public byte[] asByteArray(Object xml, Object xslt, Map<String, String> properties) throws Exception { ByteArrayOutputStream baos = new ByteArrayOutputStream(); XsltUtil.transform(xml, xslt, baos, properties); return baos.toByteArray(); }
public Node asXml(Object xml, Object xslt) throws Exception { Node node = XmlUtil.newXml(); XsltUtil.transform(xml, xslt, node); return node; }
public byte[] asByteArray(Object xml, Object xslt) throws Exception { ByteArrayOutputStream baos = new ByteArrayOutputStream(); XsltUtil.transform(xml, xslt, baos); return baos.toByteArray(); }
public Node asXml(Object xml, Object xslt, Map<String, String> properties) throws Exception { Node node = XmlUtil.newXml(); XsltUtil.transform(xml, xslt, node, properties); return node; }