我试图在java中输入一个xml,xsd并验证它们。接下来,如果我发现它们是真的,那么我必须将输入 xml 转换为其他 xml。我以这样一种方式完成了我的程序,尽管 xml 和 xsd 没有验证真实......我可以使用我不想的 xsl 将 xml 转换为其他 xml。需要帮助。
代码如下:在此代码中,XsdFile、XslFile 都预定义到我要测试的文件夹中。它们只是对象。或者,像文件“c:\abc.xml”一样思考。我只关心if(doc!=null)的情况。我应该给那里什么才能正常工作。尽管验证失败,但以下代码仍在工作。
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setValidating(true);
factory.setAttribute(
"http://java.sun.com/xml/jaxp/properties/schemaLanguage",
"http://www.w3.org/2001/XMLSchema");
factory
.setAttribute(
"http://java.sun.com/xml/jaxp/properties/schemaSource",
XsdFile);
try {
System.out.println();
DocumentBuilder parser = factory.newDocumentBuilder();
Document doc = parser.parse(XmlFile);
if (doc != null) {
Source xmlInput = new StreamSource(new File(XmlFile));
Source xsl = new StreamSource(new File(inputXslFile));
Result xmlOutput = new StreamResult(new File(transformedXml));
try {
Transformer transformer = TransformerFactory.newInstance()
.newTransformer(xsl);
transformer.transform(xmlInput, xmlOutput);
System.out.println("The transformed xml is:" + xmlOutput);
} catch (TransformerException e) {
// Handle.
}
}
} catch (ParserConfigurationException e) {
System.out.println("Parser not configured: " + e.getMessage());
} catch (SAXException e) {
System.out.print("Parsing XML failed due to a "
+ e.getClass().getName() + ":");
System.out.println(e.getMessage());
} catch (IOException e) {
e.printStackTrace();
}