我有一个包含base64二进制数据的XML-Schema。 问题是,如果二进制文件足够大,我不出所料地得到一个OutOfMemoryError。 我设法生成受影响的java类以使用DataHanlder而不是byte []但仍然使用JAXb接缝在RAM中进行封送处理。 使用的模式不能更改,并且非常复杂,因此方便地构建XML不是一种解决方案。 我对此的唯一想法是添加占位符而不是大二进制文件,然后替换它。但我相信有更好的解决方案!?
感谢您的提示
示例架构:
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://example.com/"
xmlns:xmime="http://www.w3.org/2005/05/xmlmime"
xmlns:tns="http://example.com/"
elementFormDefault="qualified">
<element name="Document">
<complexType>
<sequence>
<element
name="text"
type="base64Binary"
xmime:expectedContentTypes="anything/else" />
</sequence>
</complexType>
</element>
</schema>
生成的Java类:
package com.example.gen;
import javax.activation.DataHandler;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlMimeType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"text"
})
@XmlRootElement(name = "Document")
public class Document {
@XmlElement(required = true)
@XmlMimeType("anything/else")
protected DataHandler text;
public DataHandler getText() {
return text;
}
public void setText(DataHandler value) {
this.text = value;
}
}
示例代码:
File bigFile = new File("./temp/bigFile.bin");
File outFile = new File("./temp/bigXML.xml");
Document document = new Document();
DataHandler bigDocDH = new DataHandler(new FileDataSource(bigFile));
document.setText(bigDocDH);
JAXBContext jaxbContext = JAXBContext.newInstance("com.example.gen");
Marshaller marshaller = jaxbContext.createMarshaller();
OutputStream outputStream = new FileOutputStream(outFile);
marshaller.marshal(document, outputStream);
答案 0 :(得分:0)
好的,我找到了一个适合我的解决方案: 首先,我用DataHandler替换指向大文件的DataHandler,DataHandler包含一个小字节数组作为内容。
在此之后,我实现了一个XMLStreamWriterWrapper,它将所有方法委托给另一个XMLStreamWriter。如果将具有简单内容的Datahandler的内容写入XMLSteamWriterWrapper,则删除数据并将原始数据流式传输到此位置。
构造函数和工厂:
/**
* Constructor.
*
* @param outputStream
* {@link #outputStream}
* @param binaryData
* {@link #binaryData}
* @param token
* the search token.
* @throws XMLStreamException
* In case the XMLStreamWriter cannot be constructed.
*/
private XMLStreamWriterWrapper(OutputStream outputStream, DataHandler binaryData, String token) throws XMLStreamException {
this.xmlStreamWriter = XMLOutputFactory.newFactory().createXMLStreamWriter(outputStream);
// ensure the OutputStream is buffered. otherwise encoding of large data
// takes hours.
if (outputStream instanceof BufferedOutputStream) {
this.outputStream = outputStream;
} else {
this.outputStream = new BufferedOutputStream(outputStream);
}
this.binaryData = binaryData;
// calculate the token.
byte[] encode = Base64.getEncoder().encode(token.getBytes(Charset.forName("UTF-8")));
this.tokenAsString = new String(encode, Charset.forName("UTF-8"));
this.token = this.tokenAsString.toCharArray();
}
/**
* Factory method to create the {@link XMLStreamWriterWrapper}.
*
* @param outputStream
* The OutputStream where to marshal the xml to.
* @param binaryData
* The binary data which shall be streamed to the xml.
* @param token
* The token which akts as placeholder for the binary data.
* @return The {@link XMLStreamWriterWrapper}
* @throws XMLStreamException
* In case the XMLStreamWriter could not be constructed.
*/
public static XMLStreamWriterWrapper newInstance(OutputStream outputStream, DataHandler binaryData, String token) throws XMLStreamException {
return new XMLStreamWriterWrapper(outputStream, binaryData, token);
}
writeCharacters实现:
/*
* (non-Javadoc)
*
* @see javax.xml.stream.XMLStreamWriter#writeCharacters(java.lang.String)
*/
@Override
public void writeCharacters(String text) throws XMLStreamException {
if (this.tokenAsString.equals(text)) {
writeCharacters(text.toCharArray(), 0, text.length());
} else {
xmlStreamWriter.writeCharacters(text);
}
}
/*
* (non-Javadoc)
*
* @see javax.xml.stream.XMLStreamWriter#writeCharacters(char[], int, int)
*/
@Override
public void writeCharacters(char[] text, int start, int len) throws XMLStreamException {
char[] range = Arrays.copyOfRange(text, 0, len);
if (Arrays.equals(range, token)) {
LOGGER.debug("Found replace token. Start streaming binary data.");
// force the XMLStreamWriter to close the start tag.
xmlStreamWriter.writeCharacters("");
try {
// flush the content of the streams.
xmlStreamWriter.flush();
outputStream.flush();
// do base64 encoding.
OutputStream wrap = Base64.getMimeEncoder().wrap(outputStream);
this.binaryData.writeTo(wrap);
} catch (IOException e) {
throw new XMLStreamException(e);
} finally {
try {
// flush the output stream
outputStream.flush();
} catch (IOException e) {
throw new XMLStreamException(e);
}
}
LOGGER.debug("Successfully inserted binary data.");
} else {
xmlStreamWriter.writeCharacters(text, start, len);
}
}
使用示例:
//Original file DataHandler
DataHandler bigDocDH = new DataHandler(new FileDataSource(bigFile));
Document document = new Document();
String replaceToken = UUID.randomUUID().toString();
//DataHandler with content replaced by the XMLStreamWriterWrapper
DataHandler tokenDH = new DataHandler(new ByteArrayDataSource(replaceToken.getBytes(Charset.forName("UTF-8")), bigDocDH.getContentType()));
document.setText(tokenDH);
try (OutputStream outStream = new FileOutputStream(outFile)) {
XMLStreamWriter streamWriter = XMLStreamWriterWrapper.newInstance(outStream, bigDocDH, replaceToken);
marshaller.marshal(document, streamWriter);
}