如何从Java XML Smook解析器的XML输出中删除包名称?
示例代码:
Smooks smooks = new Smooks();
ExecutionContext executionContext = smooks.createExecutionContext();
StringWriter writer = new StringWriter();
smooks.filterSource(executionContext,
new JavaSource(inputJavaObject),
new StreamResult(writer));
System.out.println(writer.toString());