私はお尻を持ってObject
います
private String name;
private int age;
private String country;
// getters and setters
XML
このオブジェクトをJAXB
次のように変換します
OutputStream stream = new ObjectOutputStream(new FileOutputStream(getOutputFilePath(document.getUniqueId())));
write(proposal, stream);
と
protected void write(@Nonnull final Document document, @Nonnull final OutputStream stream) throws PersistenceException {
try {
jaxbContext.createMarshaller().marshal(document, stream);
} catch (final JAXBException e) {
LOGGER.error(e.getMessage(), e);
throw new PersistenceException("Failed to marshall document " + docment.getUniqueId() + ": " + e.getMessage(), e);
}
}
stream
これをディスク上の Zip ファイルに変換するにはどうすればよいですか?