我有以下方法:
private <U> void fun(U u) throws JAXBException {
JAXBContext context = JAXBContext.newInstance(u.getClass());
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(u, System.out);
}
marshal() 方法采用不同类型的参数。看这里 它需要:
- 内容处理程序
- 输出流
- XmlEventWriter
- XMLStreamWriter 等
如何修改上述方法,而不是System.out
,我可以在函数参数中传递编组的目的地。
例如,我想调用如下方法:
objToXml(obj1,System.out);
outToXml(obj1,file_pointer);
同样地。
我尝试跟随fun(obj1,PrintStream.class,System.out)
但没有成功:
private <T, U, V> void fun(T t, Class<U> u, V v) throws JAXBException {
JAXBContext context = JAXBContext.newInstance(t.getClass());
Marshaller marshaller = context.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(t, (U) v);
}