将 org.w3c.dom.Document 转换为 File 文件
我有一个xml文件作为Java中的对象,作为org.w3c.dom.Document doc,我想将其转换为文件文件。如何将类型文档转换为文件?谢谢
我想在文件类型为File的现有xml文件(标准dita)中添加元数据元素。我知道一种向文件添加元素的方法,但是我必须将文件转换为org.w3c.dom.Document。我用 loadXML 方法做到了这一点:
private Document loadXML(File f) throws Exception{
DocumentBuilder b = DocumentBuilderFactory.newInstance().newDocumentBuilder();
return builder.parse(f);
之后,我更改了org.w3c.dom.Document,然后我想继续程序的流程,并且我必须将文档文档转换回File文件。
什么是有效的方法来做到这一点?或者,在不转换xml文件的情况下获取xml文件中的某些元素的更好解决方案是什么?