有没有办法 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", .............
谢谢!