Smooks有没有办法根据java实例生成CSV文件?
我正在寻找类似的东西:
public static void main(String[] args){
Employee emp = new Employee();
emp.setName("abc");
emp.setSalary(12312);
/* set other emp fields */
smooks.filterSource(.....);
}
CSV Output: "abc","12312", .............
谢谢!
答案 0 :(得分:0)
只需看看Smooks文档here,就可以通过使用JavaSource
对象包装bean来完成 - 可以找到示例here
然后您可以使用FreeMarker
模板将Java Object转换为所需的格式 - look here
<强>更新强> 可以找到工作示例here at github