当前位置: 软件>java软件
Table To Xls
本文导语: Java实现,HTML table转换为Excel,支持大部分样式,欢迎提出意见或者建议,后续可能,只是说可能会增加外部样式支持。 有图有真相: 转换结果: 代码托管在 http://git.oschina.net/chyxion/table-to-xls 欢迎捧场,拍砖。...
Java实现,HTML table转换为Excel,支持大部分样式,欢迎提出意见或者建议,后续可能,只是说可能会增加外部样式支持。
有图有真相:
转换结果:
代码托管在 http://git.oschina.net/chyxion/table-to-xls
欢迎捧场,拍砖。
使用方式:
0、配置增加Maven仓库
chyxion-github Chyxion Github http://chyxion.github.io/maven/
1、添加Maven依赖
me.chyxion table-to-xls 0.0.1-RELEASE
2、使用
StringBuilder html = new StringBuilder(); Scanner s = new Scanner(getClass().getResourceAsStream("/sample.html"), "utf-8"); while (s.hasNext()) { html.append(s.nextLine()); } s.close(); FileOutputStream fout = new FileOutputStream("data.xls"); fout.write(TableToXls.process(html)); fout.close();
好了,大功告成,么么,chyxion@163.com,有事打个电话。