摘要: XWPFDocument 转为 InputStream XWPFDocument document = new XWPFDocument(new FileInputStream("person_template.docx")); ByteArrayOutputStream baos = new By 阅读全文
posted @ 2026-03-20 15:52 root-crypto 阅读(2) 评论(0) 推荐(0)
摘要: 网络图片打成压缩包并下载 public void download(HttpServletResponse response) { List<Person> personList = personService.findAll(); if (CollectionUtils.isNotEmpty(pe 阅读全文
posted @ 2026-03-20 15:38 root-crypto 阅读(0) 评论(0) 推荐(0)
摘要: 1.Maven 配置 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>5.2.5</version> </dependency> <dependency> <groupId>or 阅读全文
posted @ 2026-03-20 15:18 root-crypto 阅读(2) 评论(0) 推荐(0)
摘要: 1.创建线程池 import lombok.extern.slf4j.Slf4j; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configurat 阅读全文
posted @ 2026-03-20 14:50 root-crypto 阅读(1) 评论(0) 推荐(0)
摘要: 1.下载安装 LibreOffice https://www.libreoffice.org/download/download-libreoffice/ 2.Maven 配置 <dependency> <groupId>org.jodconverter</groupId> <artifactId> 阅读全文
posted @ 2026-03-19 11:26 root-crypto 阅读(5) 评论(0) 推荐(0)
摘要: 修改httpd.conf中的 <IfModule dir_module> DirectoryIndex index.html index.htm </IfModule> 阅读全文
posted @ 2020-08-24 16:50 root-crypto 阅读(1116) 评论(0) 推荐(0)
摘要: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Scooter Software\Beyond Compare 4] "CacheID"=- 修改为 Beyond Compare 4.reg 阅读全文
posted @ 2020-07-06 09:11 root-crypto 阅读(129) 评论(0) 推荐(0)
摘要: jetbrains-agent(idea激活)https://fls.jetbrains-agent.com/ JRebel(热编译)https://jrebel.qekang.com/ MyBatisX(mybatis插件) MyBatis Log Plugin(sql拼装) Key Promot 阅读全文
posted @ 2020-06-12 21:52 root-crypto 阅读(209) 评论(0) 推荐(0)
摘要: #查看当前防火墙状态 systemctl status firewalld #关闭当前防火墙 systemctl stop firewalld #开机防火墙不启动 systemctl disable firewalld 阅读全文
posted @ 2020-06-03 10:30 root-crypto 阅读(177) 评论(0) 推荐(0)
摘要: cd project git init git remote add origin http://gitlab.xxx.com/group/project.git (删除本地origin:git remote rm origin) git add . git branch master (删除本地分 阅读全文
posted @ 2020-06-03 10:28 root-crypto 阅读(139) 评论(0) 推荐(0)