添加引用实体以解析JAVA中的XML文件

时间:2013-06-12 14:17:17

标签: java xml

我正在阅读JAVA中的XML文件,如下所示:

String filepath = xmlFile;
File workFile = new File(filepath);
File fragmentDir = workFile.getParentFile();
DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
Document doc = docBuilder.parse(filepath);

在这个xml文件中有像& testRef;

这样的引用

我有一个其他文件,我声明了所有这样的实体:

<!ENTITY testRef 'hello"'>

简单的解决方案是直接在xml文件中添加这些引用,或者添加一个!ENTITY系统&#34; file.ref&#34;但我不能。 有没有解决方案,我可以告诉我的DocumentBuilderFactory:使用此文件来读取引用?

编辑:我试过这个:

docBuilder.setEntityResolver(new EntityResolver() {
            public InputSource resolveEntity(String publicId, String systemId) throws SAXException,IOException {
                System.out.println("Resolving");
                return new InputSource("file.ref");
            }
        });

但我一直在&#34;实体&#34; testRef&#34;被引用,但未被声明......&#34;,文本&#34;解决&#34;甚至不打印。似乎文档构建器没有考虑新的解析器。

我错过了什么?

2 个答案:

答案 0 :(得分:1)

使用DocumentBuilder的{​​{1}}方法。

setEntityResolver

然后

class Resolver implements EntityResolver {

  public InputSource resolveEntity(String publicId, String systemId) {
  if (systemId.equals("THE_SYSTEM_ID_THAT_YOU_ARE_USING")) {
     System.out.println("Resolving Entity...");
     return new InputSource("YOUR_REFERENCES_XML");
  } else {
     // use the default behaviour
     return null;
  }
  }
}

编辑:

在深入了解EntityResolver之后,我发现如果XML文件没有声明实体引用文件(这是您手边的问题),则忽略实体解析器。 但是你可以调整下面的技巧来使它工作:

DocumentBuilder builder = factory.newDocumentBuilder();
Resolver res = new Resolver();
builder.setEntityResolver(res);
Document doc = builder.parse("YOUR XML FILE");

ENTITYFILE是声明实体引用的文件。

希望有所帮助。

答案 1 :(得分:0)

public static void main(String[] args) {

    try {

        System.out.println("Start Process");
        File xmlFile = new File("/Users/cgonzalez/Desktop/test.xml");
        SAXBuilder builder = new SAXBuilder();
        Document document = new Document();
        document = builder.build(xmlFile);

        HashMap piMap = new HashMap(2);
        piMap.put("type", "text/xsl");
        piMap.put("href", "http://localhost:8080/achs-expdf-web/app/resource/xslt/plantilla.xsl");
        ProcessingInstruction pi = new ProcessingInstruction("xml-stylesheet", piMap);

        document.getContent().add(0, pi);

        // new XMLOutputter().output(doc, System.out);
        XMLOutputter xmlOutput = new XMLOutputter();

        // display nice nice
        xmlOutput.setFormat(Format.getPrettyFormat());
        xmlOutput.output(document, new FileWriter("/Users/cgonzalez/Desktop/test.xml"));
        System.out.println("end Process");
    } catch (Exception e) {
        e.printStackTrace();
    }
}