摘要: 1、前置条件(合并前的单元格边框必须存在) 2、设置合并单元格样式 firstRow – Index of first rowlastRow – Index of last row (inclusive), must be equal to or larger than firstRowfirstC 阅读全文
posted @ 2024-12-09 11:28 星空物语之韵 阅读(11) 评论(0) 推荐(0) 编辑
摘要: public static <T> void exportDownBoxExcel(String fileName, String sheetName,Class<T> t, String titleName, List<List<String>> headers, HttpServletRespo 阅读全文
posted @ 2024-11-19 15:10 星空物语之韵 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在IDEA的Maven 项目中的pom.xml文件右键点击Add as Ant Build File按钮导致pom.xml文件图 标出现小蜘蛛,并且pom文件标签全部报红 解决方案: 在右侧Ant窗口处删除出现的pom.xml文件 直接选中pom.xml按Delete键进行删除会导致依然报 阅读全文
posted @ 2024-11-01 16:11 星空物语之韵 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 在navicat 执行 如下命令 修复表 sql REPAIR TABLE tablename; 大约2分钟左右可才能修复 阅读全文
posted @ 2024-10-31 11:50 星空物语之韵 阅读(19) 评论(0) 推荐(0) 编辑
摘要: source /etc/profiledb_user="root"db_pwd="root"bak_dir="/home/data/db_backup/"time="$(date +"%Y%m%d_%H%M%S")" #se数据库备份db_se_name="se"docker exec mysql 阅读全文
posted @ 2024-10-28 15:41 星空物语之韵 阅读(20) 评论(0) 推荐(0) 编辑
摘要: update aa as a,bb as bset a.1=b.1,a.2=b.2where a.id=b.id 阅读全文
posted @ 2024-09-04 14:40 星空物语之韵 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1.详情 查看这个地址: https://www.cnblogs.com/brf-test/p/16519135.html 阅读全文
posted @ 2024-02-18 17:33 星空物语之韵 阅读(7) 评论(0) 推荐(0) 编辑
摘要: String s = JSONObject.toJSONString(student) 如果student中有某个属性是Date 日期格式 的,在经过上述转换以后,日期会变成一长串数字,此时需要对日期进行格式化 String s = JSONObject.toJSONString(student, 阅读全文
posted @ 2024-01-15 15:01 星空物语之韵 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 数据实时增量同步工具之go-mysql-transfer:https://blog.csdn.net/weixin_42526326/article/details/121302961 Elasticsearch笔记之安装、配置、Kibana基础:https://blog.csdn.net/weix 阅读全文
posted @ 2023-12-19 17:11 星空物语之韵 阅读(859) 评论(0) 推荐(0) 编辑
摘要: 查下看文件夹 占用内存: du --max-depth=1 -h 当前目录下的 find . -type f -name "nohup.out" -exec sh -c '> {}' \; 说明:这个命令会搜索当前目录及其子目录中名为 "nohup.out" 的文件,并将它们的内容清空。 阅读全文
posted @ 2023-12-13 14:33 星空物语之韵 阅读(50) 评论(0) 推荐(0) 编辑