springMVC+easypoi做excel的导入导出
1.认识 Java操作办公软件:jxl、poi 数据读取用POI,只要不涉及单元格样式的写入使用jxl效率高点。POI读取效率高,但是大数据量写入Excel效率比jxl慢。 jxl只使用03版本、po使用所有版本 2.easypoi需要导入的jar包 1 < dependency > 2 < groupId > cn.afterturn </ groupId > 3 < artifactId > easypoi-base </ artifactId > 4 < version > 3.2.0 </ version > 5 </ dependency > 6 < dependency > 7 < groupId > cn.afterturn </ groupId > 8 < artifactId > easypoi-web </ artifactId > 9 < version > 3.2.0 </ version > 10 </ dependency > 11 < dependency > 12 < groupId > cn.afterturn </ groupId > 13 < artifactId > easypoi-annotation </ artifactId > 14 < version > 3.2.0 </ version > 15 </ dependency > 1