随笔分类 -  开发 / 开发-后端 / 后端-JAVA / JAVA-工具类

JAVA-工具类相关
摘要:JAVA-爬虫 一、工具类 爬取网站URL:中国吉林网 https://s.chinajilin.com.cn/was5/web/search 源码: package com.ruoyi.knowledge.controller; import org.apache.poi.xwpf.usermod 阅读全文
posted @ 2025-04-28 08:09 skystrivegao 阅读(64) 评论(0) 推荐(0)
摘要:字符串工具类 一、字符串非空校验(传参个数不固定) 点击查看代码 public static boolean validateStrings(String... strings) { if (strings == null) { return false; } for (int i = 0; i < 阅读全文
posted @ 2024-12-02 08:29 skystrivegao 阅读(26) 评论(0) 推荐(0)
摘要:日期工具类 一、根据出生年月日获取到年龄 public static int getAgeByBirth(String birthDateString) { int age = 0; try { DateTimeFormatter birthDateFormatter = DateTimeForma 阅读全文
posted @ 2024-12-02 08:29 skystrivegao 阅读(119) 评论(0) 推荐(0)