1
私は、生成されたxml出力を文字列型コンテナに入れて、その文字列をコンソールに表示したいと考えています。jaxbの出力文字列
try {
file = new File(XMLName);
JAXBContext jaxbContext = JAXBContext
.newInstance(ActivityXmlV1.class);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
jaxbMarshaller.marshal(activityXmlV1, file);
//jaxbMarshaller.marshal(activityXmlV1, System.out);
xmlData=asString(jaxbContext, activityXmlV1);
System.out.println(xmlData);
System.out.println("Sucess!!");
} catch (UnmarshalException ue) {
} catch (Exception e) {
}