当前位置: 代码迷 >> 报表 >> 表格,excel的文件生成
  详细解决方案

表格,excel的文件生成

热度:119   发布时间:2016-05-05 07:48:42.0
报表,excel的文件生成
Kent Chen [3:36 PM]:
        List<String> lines = new ArrayList<String>();
        lines.add("\"2,3\",3");
        lines.add("4,5");
        FileUtils.writeLines(new File("c:/temp2.csv"), lines);
Donny Hong [3:37 PM]:
你现在知道的常用的api有哪些?
Donny Hong [3:38 PM]:
然后比较推荐
Kent Chen [3:38 PM]:
for excel?
Kent Chen [3:38 PM]:
poi is powerful
Kent Chen [3:38 PM]:
but jxl is eaiser to use
Donny Hong [3:38 PM]:
ok, jxl
  相关解决方案