how to convert array byte to org.w3c.dom.Document

烂漫一生 提交于 2020-01-10 04:16:05

问题


I have a Document (org.w3c.dom.Document), I convert this document to array of byte:

private byte[] obtenerBytesDeDocument(Document documentoXml) throws Exception {
    Source source = new DOMSource( documentoXml );
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    Result result = new StreamResult(out);
    TransformerFactory factory = TransformerFactory.newInstance();
    Transformer transformer = factory.newTransformer();
    transformer.transform(source, result);
    byte[] butesXml =  out.toByteArray();
    return butesXml;
}

I need convert the array of byte to document newly:

private Document obtenerDocumentDeByte(byte[] documentoXml) throws Exception {
        ...
}

Any idea?

Thansks!!!


回答1:


The following should work.

private Document obtenerDocumentDeByte(byte[] documentoXml) throws Exception {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setNamespaceAware(true);
    DocumentBuilder builder = factory.newDocumentBuilder();
    return builder.parse(new ByteArrayInputStream(documentoXml));
}


来源:https://stackoverflow.com/questions/21165871/how-to-convert-array-byte-to-org-w3c-dom-document

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!