日期工具类

摘要: public class DateUtils extends org.apache.commons.lang3.time.DateUtils { private static String[] parsePatterns = { "yyyy-MM-dd", "yyyy-MM-dd HH:mm:ss" 阅读全文
posted @ 2020-07-27 17:17 TheKingJames 阅读(119) 评论(0) 推荐(0) 编辑

DES加密解密工具类

摘要: public class CryptoUtil { private static Key DEFAULT_KEY; /** * 默认密钥 */ private static final String DEFAULT_SECRET_KEY = "1qaz2wsx3edc$RFV%TGB^YHN&UJM 阅读全文
posted @ 2020-07-27 17:16 TheKingJames 阅读(451) 评论(0) 推荐(0) 编辑

Cookie工具类

摘要: public class CookieUtils { /** * 设置 Cookie(生成时间为1天) * @param name 名称 * @param value 值 */ public static void setCookie(HttpServletResponse response, St 阅读全文
posted @ 2020-07-27 17:14 TheKingJames 阅读(259) 评论(0) 推荐(0) 编辑

字符串工具类

摘要: public class StringUtils extends org.apache.commons.lang3.StringUtils { private static final char SEPARATOR = '_'; private static final String CHARSET 阅读全文
posted @ 2020-07-27 17:12 TheKingJames 阅读(131) 评论(0) 推荐(0) 编辑

线程相关工具类

摘要: public class Threads { /** * sleep等待,单位为毫秒,忽略InterruptedException. */ public static void sleep(long millis) { try { Thread.sleep(millis); } catch (Int 阅读全文
posted @ 2020-07-27 17:09 TheKingJames 阅读(132) 评论(0) 推荐(0) 编辑

时间计算工具类

摘要: public class TimeUtils { public static String toTimeString(long time) { TimeUtils t = new TimeUtils(time); int day = t.get(TimeUtils.DAY); int hour = 阅读全文
posted @ 2020-07-27 17:07 TheKingJames 阅读(121) 评论(0) 推荐(0) 编辑

文件上传工具类

摘要: public class UploadUtils { /** * 表单字段常量 */ public static final String FORM_FIELDS = "form_fields"; /** * 文件域常量 */ public static final String FILE_FIEL 阅读全文
posted @ 2020-07-27 17:04 TheKingJames 阅读(121) 评论(0) 推荐(0) 编辑

条形码和二维码编码解码

摘要: public class ZxingHandler { /** * 条形码编码 * * @param contents * @param width * @param height * @param imgPath */ public static void encode(String conten 阅读全文
posted @ 2020-07-27 17:03 TheKingJames 阅读(398) 评论(0) 推荐(0) 编辑

Mybatis的mapper文件中的sql语句的修改后自动加载

摘要: public class MapperLoader implements DisposableBean, InitializingBean, ApplicationContextAware { private ConfigurableApplicationContext context = null 阅读全文
posted @ 2020-07-27 16:38 TheKingJames 阅读(673) 评论(0) 推荐(0) 编辑

JUC 1

摘要: 1.并发与并行 它们虽然都说是"多个进程同时运行",但是它们的"同时"不是一个概念。并行的"同时"是同一时刻可以多个进程在运行(处于running),并发的"同时"是经过上下文快速切换,使得看上去多个进程同时都在运行的现象,是一种OS欺骗用户的现象。并行与否程序员无法控制,只能让操作系统决定。 2 阅读全文
posted @ 2020-04-20 13:24 TheKingJames 阅读(176) 评论(0) 推荐(0) 编辑