
Excel相关
文章平均质量分 77
hanchuang213
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Excel动态分sheet页
/** * sheet分页(动态的换sheet) * @author hanchuang * */ public class ExcelSheet { /** * @category firstExcel * @exception fileNotFindException原创 2017-12-21 13:38:53 · 543 阅读 · 0 评论 -
内容分多个excel文件进行存储数据
/** * 分多个excel文件进行存储数据 * @author hanchuang * */ public class AccessExcel { String[] titleCell; String[][] allCell; jxl.Workbook workBook; Sheet sheet; int c原创 2017-12-21 13:46:30 · 411 阅读 · 0 评论 -
将excel文件压缩加密
/** * 将excel文件压缩加密 * @author hanchuang * */ public class ZipAddExcel { /** * 压缩一个文件 * @author hanchuang * */ public static void Zip(String newfilename,String url) {转载 2017-12-21 13:50:36 · 1174 阅读 · 0 评论 -
csv格式转换xls
/** * 将excel文件由csv格式转换为xls格式 * @author hanchuang * */ public class CSVToExcelConverter { public static void CSVToExcel(String filename,String url) throws IOException { ArrayList arList转载 2017-12-21 13:56:46 · 2375 阅读 · 1 评论 -
大数据量excel分页
package excel; //import junit.framework.Assert; import java.io.FileOutputStream; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.转载 2018-01-18 15:29:56 · 873 阅读 · 0 评论