摘要: Java CRC-32 工具类 /** * CRC-32 * * <table width="400px" border="1" cellpadding="0" cellspacing="0"> * <tr> * <th>名称</th> * <th>多项式</th> * <th>初始值</th> * 阅读全文
posted @ 2019-10-28 17:07 XKIND 阅读(639) 评论(1) 推荐(0) 编辑
摘要: Java CRC-16 工具类 /** * CRC-16 * * <table width="400px" border="1" cellpadding="0" cellspacing="0"> * <tr> * <th>名称</th> * <th>多项式</th> * <th>初始值</th> * 阅读全文
posted @ 2019-10-22 18:17 XKIND 阅读(417) 评论(0) 推荐(0) 编辑
摘要: Java 查找子数组工具类 import java.util.Objects; /** * Code shared to do searches */ public class SubarrayUtils { // boolean IndexOf // /** * Code shared by bo 阅读全文
posted @ 2019-06-17 14:42 XKIND 阅读(82) 评论(0) 推荐(0) 编辑
摘要: C# 查找子数组工具类 /// <summary> /// Code shared to do searches /// </summary> public class SubarrayUtils { /// <summary> /// Code shared by ArraySegment to 阅读全文
posted @ 2019-06-13 11:21 XKIND 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 一个 TimerTask 的拓展封装 import java.util.Calendar; import java.util.TimerTask; public abstract class ComplexTimerTask extends TimerTask { protected Complex 阅读全文
posted @ 2019-04-08 19:33 XKIND 阅读(69) 评论(0) 推荐(0) 编辑
摘要: Java AES_CBC加解密工具类 import java.io.IOException; import java.security.GeneralSecurityException; import java.security.Security; import javax.crypto.Ciphe 阅读全文
posted @ 2019-04-02 20:10 XKIND 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Java AES_ECB加解密工具类 import java.io.IOException; import java.security.GeneralSecurityException; import java.security.Security; import javax.crypto.Ciphe 阅读全文
posted @ 2019-04-02 20:09 XKIND 阅读(214) 评论(0) 推荐(0) 编辑
摘要: Java 时间格式化工具类 import java.time.DateTimeException; import java.time.Instant; import java.time.LocalDate; import java.time.LocalDateTime; import java.ti 阅读全文
posted @ 2019-03-15 14:06 XKIND 阅读(384) 评论(0) 推荐(0) 编辑
摘要: C# 数值文本互转工具类 using System; using System.ComponentModel; namespace System { public static class SimpleConverter { /// <summary> /// [ String | 数值字符串 ] 阅读全文
posted @ 2019-03-14 10:02 XKIND 阅读(100) 评论(0) 推荐(0) 编辑
摘要: import java.util.Collection; import java.util.LinkedList; import java.util.List; import java.util.Stack; import java.util.concurrent.locks.ReadWriteLo 阅读全文
posted @ 2019-03-13 14:56 XKIND 阅读(51) 评论(0) 推荐(0) 编辑