Yes, yes I know that lots of questions were asked about this topic. But I still cannot find the solution to my problem. I have a property annotated Java object. For example Customer, like in this example. And I want a String representation of it. Google reccomends using JAXB for such purposes. But in all examples created XML file is printed to file or console, like this:
File file = new File("C:\\file.xml");
JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
// output pretty printed
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
jaxbMarshaller.marshal(customer, file);
jaxbMarshaller.marshal(customer, System.out);
But I have to use this object and send over network in XML format. So I want to get a String which represents XML.
String xmlString = ...
sendOverNetwork(xmlString);
How can I do this?
Using ByteArrayOutputStream
You can marshal it to a
StringWriter
and grab its string. fromtoString()
.Testing And working Java code to convert java object to XML:
Customer.java
createXML.java
You can use the Marshaler's method for marshaling which takes a Writer as parameter:
and pass it an Implementation which can build a String object
Call its toString method to get the actual String value.
So doing: