随笔分类 - 常用工具类
摘要:1、引入相关依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>4.1.1</version> </dependency> <dependency> <groupId>org.
阅读全文
摘要:public class SslUtils { private static void trustAllHttpsCertificates() throws Exception { TrustManager[] trustAllCerts = new TrustManager[1]; TrustMa
阅读全文
摘要:package com.guochuang.gov.dc.common.util;import java.util.Scanner;import java.util.regex.Pattern;public class PasswordCheckUtil { /** * 假定设置密码时,密码规则为:
阅读全文