上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: // 获得总共有多少行int rowNum = 0;//存在样式的空行。会被统计进来。所以主要的问题是要判断是否是空行。for (int num = 1; num <= sheet.getLastRowNum(); num++) {//跳过第一行,看个人需求 HSSFRow row = sheet. 阅读全文
posted @ 2022-12-05 15:29 懂得归零 阅读(2798) 评论(0) 推荐(0) 编辑
摘要: //递归插入public void add(List<Object> all, long start, long limit){ //截取 List<Object> collect = all.stream().skip(start).limit(limit).collect(Collectors. 阅读全文
posted @ 2022-12-05 11:20 懂得归零 阅读(1243) 评论(0) 推荐(0) 编辑
摘要: 1、前置条件(合并前的单元格边框必须存在) 2、设置合并单元格样式 XSSFSheet sheet;CellRangeAddress cellRangeAddress = new CellRangeAddress(startRow, overRow, startCol, overCol);sheet 阅读全文
posted @ 2022-11-23 14:01 懂得归零 阅读(671) 评论(1) 推荐(0) 编辑
摘要: public static XSSFColor fine = new XSSFColor(new Color(146, 208, 80)); XSSFCellStyle cloneStyle = ht.getWorkbook().createCellStyle();cloneStyle = (XSS 阅读全文
posted @ 2022-11-23 14:01 懂得归零 阅读(82) 评论(0) 推荐(0) 编辑
摘要: -- 基于ig.start_pile,ig.end_pile 字段去重 with ete as ( SELECT * from (SELECT ROW_NUMBER() OVER(PARTITION by ig.start_pile,ig.end_pile ORDER BY ig.start_pil 阅读全文
posted @ 2022-10-28 11:25 懂得归零 阅读(1068) 评论(0) 推荐(0) 编辑
摘要: with ete as ( SELECT * from table_name ) SELECT * from ete 阅读全文
posted @ 2022-10-28 11:24 懂得归零 阅读(73) 评论(0) 推荐(0) 编辑
摘要: alter table "pavement_damage_dtl_temp" rename to "pavement_damage_dtl"; 搜索 复制 阅读全文
posted @ 2022-09-26 09:16 懂得归零 阅读(178) 评论(0) 推荐(0) 编辑
摘要: ALTER TABLE pavement_damage_dtl_temp add PRIMARY key(id); ALTER table pavement_damage_dtl_temp alter is_manual_work set DEFAULT FALSE; 搜索 复制 阅读全文
posted @ 2022-09-26 09:15 懂得归零 阅读(617) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE pavement_damage_dtl_temp(like pavement_damage_dtl); 搜索 复制 阅读全文
posted @ 2022-09-26 09:14 懂得归零 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 1、添加pom依赖 <dependency> <groupId>com.github.rholder</groupId> <artifactId>guava-retrying</artifactId> <version>2.0.0</version></dependency> 2、Guava Ret 阅读全文
posted @ 2022-09-19 10:27 懂得归零 阅读(96) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页