上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: POI导出的excel,ofiice打开出现上述的问题,只需要在导出excel的时候强制设置单元格的背景颜色为白色即可; 单元格的颜色设设置的时候,有背景颜色设置方法[setFillBackgroundColor()]和前景颜色设置方法[setFillForegroundColor()];设置的时候 阅读全文
posted @ 2020-07-09 15:06 -天道酬勤- 阅读(1603) 评论(0) 推荐(0) 编辑
摘要: 参考地址:https://www.jianshu.com/p/e9ced1e1691e 本人亲测激活成功 阅读全文
posted @ 2020-07-07 19:29 -天道酬勤- 阅读(804) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chy18883701161/p/12693162.html 阅读全文
posted @ 2020-07-07 18:33 -天道酬勤- 阅读(103) 评论(0) 推荐(0) 编辑
摘要: java8 stream流操作的flatMap(流的扁平化):https://blog.csdn.net/Mark_Chao/article/details/80810030 阅读全文
posted @ 2020-07-02 13:50 -天道酬勤- 阅读(509) 评论(0) 推荐(0) 编辑
摘要: List<CommonExportDTO> commonList; // 取字段string转int构建新列表List<Integer> collect = commonList.stream().map(dto -> Integer.valueOf(dto.getCell6())).collect 阅读全文
posted @ 2020-07-02 13:43 -天道酬勤- 阅读(10691) 评论(0) 推荐(0) 编辑
摘要: // 合并单元格 sheet.addMergedRegion(new CellRangeAddress(0,1,2,4); // 参数 合并0行到1行,2列到4列区域 // 设置合并单元格后表格边框 setRegionBorder(1,new CellRangeAddress(0,1,2,4),sh 阅读全文
posted @ 2020-07-02 13:33 -天道酬勤- 阅读(2273) 评论(0) 推荐(0) 编辑
摘要: 枚举类(Enum) 7种常见的用法: https://blog.csdn.net/qidasheng2012/article/details/84300869 阅读全文
posted @ 2020-07-02 13:28 -天道酬勤- 阅读(136) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/759a35ef4175 阅读全文
posted @ 2020-06-23 17:23 -天道酬勤- 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 最近公司要求搭建ftp,查阅多方资料已搭建成功 1:安装net-tools工具,已安装可忽略 yum install net-tools 2:更新yum yum update -y 3:安装ftp yum install -y vsftpd 4:安装ftp客户端 yum install -y ftp 阅读全文
posted @ 2020-05-29 13:57 -天道酬勤- 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 整数型数据包括bigint型、int型、bit、smallint型和tinyint型。 参考地址:https://baijiahao.baidu.com/s?id=1621991150198350613&wfr=spider&for=pc 阅读全文
posted @ 2020-05-16 10:40 -天道酬勤- 阅读(716) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页