diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md index 259f6b5ff..ed2e39db1 100644 --- a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -4,7 +4,7 @@ 2. 请确认没有更改代码风格(如tab缩进) 3. 新特性添加请确认注释完备,如有必要,请在src/test/java下添加Junit测试用例 -### 修改描述(包括说明bug修复还是新特性添加) +### 修改描述(包括说明bug修复或者添加新特性) 1. [bug修复] balabala…… 2. [新特性] balabala…… \ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 259f6b5ff..ed2e39db1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ 2. 请确认没有更改代码风格(如tab缩进) 3. 新特性添加请确认注释完备,如有必要,请在src/test/java下添加Junit测试用例 -### 修改描述(包括说明bug修复还是新特性添加) +### 修改描述(包括说明bug修复或者添加新特性) 1. [bug修复] balabala…… 2. [新特性] balabala…… \ No newline at end of file diff --git a/README-EN.md b/README-EN.md index 56253c825..d985be568 100644 --- a/README-EN.md +++ b/README-EN.md @@ -65,7 +65,7 @@ Hutool,' Hútú '(Chinese Pinyin),On the one hand, it is simple and easy to understand, on the other hand, it means "hard to be confused".(note: confused means 'Hútú (糊涂)' in china ) -### How Hutool is changing the way we coding +### How Hutool is changing the way we code The goal of **Hutool** is to use a simple function instead of a complex piece of code, thus avoiding the problem of "copy and paste" code as much as possible and revolutionizing the way we write code. @@ -182,7 +182,7 @@ Hutool welcomes anyone to contribute code to Hutool, but the author suffers from 1. Improve the comments, especially each new method should follow the Java documentation specification to indicate the method description, parameter description, return value description and other information, if necessary, please add unit tests, if you want, you can also add your name. 2. Code indentation according to Eclipse. -3. Newly added methods do not use third-party library methods,Unless the method tool is added to the '**extra module**'. +3. Newly added methods do not use third-party library methods,Unless the method tool is add to the '**extra module**'. 4. Please pull request to the `v5-dev` branch. Hutool uses a new branch after 5.x: `v5-master` is the master branch, which indicates the version of the central library that has been released, and this branch does not allow pr or modifications. ------------------------------------------------------------------------------- diff --git a/README.md b/README.md index f348e48f3..7a4cf2e6e 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ ## 简介 Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。 -Hutool中的工具方法来自于每个用户的精雕细琢,它涵盖了Java开发底层代码中的方方面面,它既是大型项目开发中解决小问题的利器,也是小型项目中的效率担当; +Hutool中的工具方法来自每个用户的精雕细琢,它涵盖了Java开发底层代码中的方方面面,它既是大型项目开发中解决小问题的利器,也是小型项目中的效率担当; Hutool是项目中“util”包友好的替代,它节省了开发人员对项目中公用类和公用工具方法的封装时间,使开发专注于业务,同时可以最大限度的避免封装不完善带来的bug。 diff --git a/hutool-aop/src/main/java/cn/hutool/aop/proxy/JdkProxyFactory.java b/hutool-aop/src/main/java/cn/hutool/aop/proxy/JdkProxyFactory.java index 5b4803cf4..6a9c4a0f4 100644 --- a/hutool-aop/src/main/java/cn/hutool/aop/proxy/JdkProxyFactory.java +++ b/hutool-aop/src/main/java/cn/hutool/aop/proxy/JdkProxyFactory.java @@ -13,9 +13,8 @@ public class JdkProxyFactory extends ProxyFactory { private static final long serialVersionUID = 1L; @Override - @SuppressWarnings("unchecked") public T proxy(T target, Aspect aspect) { - return (T) ProxyUtil.newProxyInstance(// + return ProxyUtil.newProxyInstance(// target.getClass().getClassLoader(), // new JdkInterceptor(target, aspect), // target.getClass().getInterfaces()); diff --git a/hutool-bloomFilter/src/main/java/cn/hutool/bloomfilter/bitMap/IntMap.java b/hutool-bloomFilter/src/main/java/cn/hutool/bloomfilter/bitMap/IntMap.java index e6f83d540..498129f8f 100644 --- a/hutool-bloomFilter/src/main/java/cn/hutool/bloomfilter/bitMap/IntMap.java +++ b/hutool-bloomFilter/src/main/java/cn/hutool/bloomfilter/bitMap/IntMap.java @@ -33,14 +33,14 @@ public class IntMap implements BitMap, Serializable { public void add(long i) { int r = (int) (i / BitMap.MACHINE32); int c = (int) (i % BitMap.MACHINE32); - ints[r] = (int) (ints[r] | (1 << c)); + ints[r] = ints[r] | (1 << c); } @Override public boolean contains(long i) { int r = (int) (i / BitMap.MACHINE32); int c = (int) (i % BitMap.MACHINE32); - return ((int) ((ints[r] >>> c)) & 1) == 1; + return ((ints[r] >>> c) & 1) == 1; } @Override diff --git a/hutool-core/src/main/java/cn/hutool/core/bean/BeanPath.java b/hutool-core/src/main/java/cn/hutool/core/bean/BeanPath.java index 750ebde5a..bffb0c2e5 100644 --- a/hutool-core/src/main/java/cn/hutool/core/bean/BeanPath.java +++ b/hutool-core/src/main/java/cn/hutool/core/bean/BeanPath.java @@ -66,7 +66,7 @@ public class BeanPath implements Serializable{ * * * @param expression 表达式 - * @return {@link BeanPath} + * @return BeanPath */ public static BeanPath create(String expression) { return new BeanPath(expression); diff --git a/hutool-core/src/main/java/cn/hutool/core/codec/Base62Codec.java b/hutool-core/src/main/java/cn/hutool/core/codec/Base62Codec.java index a26693a7e..1eec9dc60 100644 --- a/hutool-core/src/main/java/cn/hutool/core/codec/Base62Codec.java +++ b/hutool-core/src/main/java/cn/hutool/core/codec/Base62Codec.java @@ -1,10 +1,10 @@ package cn.hutool.core.codec; +import cn.hutool.core.util.ArrayUtil; + import java.io.ByteArrayOutputStream; import java.io.Serializable; -import cn.hutool.core.util.ArrayUtil; - /** * Base62编码解码实现,常用于短URL
* From https://github.com/seruco/base62 @@ -49,7 +49,7 @@ public class Base62Codec implements Serializable{ /** * 创建GMP风格的Base62编码解码器对象 * - * @return {@link Base62Codec} + * @return Base62Codec */ public static Base62Codec createGmp() { return new Base62Codec(GMP); @@ -58,7 +58,7 @@ public class Base62Codec implements Serializable{ /** * 创建Inverted风格的Base62编码解码器对象 * - * @return {@link Base62Codec} + * @return Base62Codec */ public static Base62Codec createInverted() { return new Base62Codec(INVERTED); diff --git a/hutool-core/src/main/java/cn/hutool/core/date/BetweenFormater.java b/hutool-core/src/main/java/cn/hutool/core/date/BetweenFormater.java index 94d8ea82a..6a6709cb6 100644 --- a/hutool-core/src/main/java/cn/hutool/core/date/BetweenFormater.java +++ b/hutool-core/src/main/java/cn/hutool/core/date/BetweenFormater.java @@ -9,6 +9,7 @@ package cn.hutool.core.date; */ @Deprecated public class BetweenFormater extends BetweenFormatter { + private static final long serialVersionUID = 1L; public BetweenFormater(long betweenMs, Level level) { super(betweenMs, level); diff --git a/hutool-core/src/main/java/cn/hutool/core/date/SystemClock.java b/hutool-core/src/main/java/cn/hutool/core/date/SystemClock.java index 502acc67a..cf953eb98 100644 --- a/hutool-core/src/main/java/cn/hutool/core/date/SystemClock.java +++ b/hutool-core/src/main/java/cn/hutool/core/date/SystemClock.java @@ -61,25 +61,17 @@ public class SystemClock { public static final SystemClock INSTANCE = new SystemClock(1); } - /** - * 单例实例 - * @return 单例实例 - */ - private static SystemClock instance() { - return InstanceHolder.INSTANCE; - } - /** * @return 当前时间 */ public static long now() { - return instance().currentTimeMillis(); + return InstanceHolder.INSTANCE.currentTimeMillis(); } /** * @return 当前时间字符串表现形式 */ public static String nowDate() { - return new Timestamp(instance().currentTimeMillis()).toString(); + return new Timestamp(InstanceHolder.INSTANCE.currentTimeMillis()).toString(); } } diff --git a/hutool-core/src/main/java/cn/hutool/core/date/format/FastDateFormat.java b/hutool-core/src/main/java/cn/hutool/core/date/format/FastDateFormat.java index 7302270a1..ef1f25f31 100644 --- a/hutool-core/src/main/java/cn/hutool/core/date/format/FastDateFormat.java +++ b/hutool-core/src/main/java/cn/hutool/core/date/format/FastDateFormat.java @@ -50,20 +50,20 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { // ----------------------------------------------------------------------- /** - * 获得 {@link FastDateFormat} 实例,使用默认格式和地区 + * 获得 FastDateFormat实例,使用默认格式和地区 * - * @return {@link FastDateFormat} + * @return FastDateFormat */ public static FastDateFormat getInstance() { return CACHE.getInstance(); } /** - * 获得 {@link FastDateFormat} 实例,使用默认地区
+ * 获得 FastDateFormat 实例,使用默认地区
* 支持缓存 * * @param pattern 使用{@link java.text.SimpleDateFormat} 相同的日期格式 - * @return {@link FastDateFormat} + * @return FastDateFormat * @throws IllegalArgumentException 日期格式问题 */ public static FastDateFormat getInstance(final String pattern) { @@ -71,12 +71,12 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param pattern 使用{@link java.text.SimpleDateFormat} 相同的日期格式 * @param timeZone 时区{@link TimeZone} - * @return {@link FastDateFormat} + * @return FastDateFormat * @throws IllegalArgumentException 日期格式问题 */ public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone) { @@ -84,12 +84,12 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param pattern 使用{@link java.text.SimpleDateFormat} 相同的日期格式 * @param locale {@link Locale} 日期地理位置 - * @return {@link FastDateFormat} + * @return FastDateFormat * @throws IllegalArgumentException 日期格式问题 */ public static FastDateFormat getInstance(final String pattern, final Locale locale) { @@ -97,13 +97,13 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param pattern 使用{@link java.text.SimpleDateFormat} 相同的日期格式 * @param timeZone 时区{@link TimeZone} * @param locale {@link Locale} 日期地理位置 - * @return {@link FastDateFormat} + * @return FastDateFormat * @throws IllegalArgumentException 日期格式问题 */ public static FastDateFormat getInstance(final String pattern, final TimeZone timeZone, final Locale locale) { @@ -112,48 +112,48 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { // ----------------------------------------------------------------------- /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style date style: FULL, LONG, MEDIUM, or SHORT - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateInstance(final int style) { return CACHE.getDateInstance(style, null, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style date style: FULL, LONG, MEDIUM, or SHORT * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateInstance(final int style, final Locale locale) { return CACHE.getDateInstance(style, null, locale); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style date style: FULL, LONG, MEDIUM, or SHORT * @param timeZone 时区{@link TimeZone} - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone) { return CACHE.getDateInstance(style, timeZone, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style date style: FULL, LONG, MEDIUM, or SHORT * @param timeZone 时区{@link TimeZone} * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateInstance(final int style, final TimeZone timeZone, final Locale locale) { return CACHE.getDateInstance(style, timeZone, locale); @@ -161,48 +161,48 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { // ----------------------------------------------------------------------- /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style time style: FULL, LONG, MEDIUM, or SHORT - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getTimeInstance(final int style) { return CACHE.getTimeInstance(style, null, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style time style: FULL, LONG, MEDIUM, or SHORT * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getTimeInstance(final int style, final Locale locale) { return CACHE.getTimeInstance(style, null, locale); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style time style: FULL, LONG, MEDIUM, or SHORT * @param timeZone optional time zone, overrides time zone of formatted time - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone) { return CACHE.getTimeInstance(style, timeZone, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param style time style: FULL, LONG, MEDIUM, or SHORT * @param timeZone optional time zone, overrides time zone of formatted time * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getTimeInstance(final int style, final TimeZone timeZone, final Locale locale) { return CACHE.getTimeInstance(style, timeZone, locale); @@ -210,52 +210,52 @@ public class FastDateFormat extends Format implements DateParser, DatePrinter { // ----------------------------------------------------------------------- /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT * @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle) { return CACHE.getDateTimeInstance(dateStyle, timeStyle, null, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT * @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final Locale locale) { return CACHE.getDateTimeInstance(dateStyle, timeStyle, null, locale); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT * @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT * @param timeZone 时区{@link TimeZone} - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone) { return getDateTimeInstance(dateStyle, timeStyle, timeZone, null); } /** - * 获得 {@link FastDateFormat} 实例
+ * 获得 FastDateFormat 实例
* 支持缓存 * * @param dateStyle date style: FULL, LONG, MEDIUM, or SHORT * @param timeStyle time style: FULL, LONG, MEDIUM, or SHORT * @param timeZone 时区{@link TimeZone} * @param locale {@link Locale} 日期地理位置 - * @return 本地化 {@link FastDateFormat} + * @return 本地化 FastDateFormat */ public static FastDateFormat getDateTimeInstance(final int dateStyle, final int timeStyle, final TimeZone timeZone, final Locale locale) { return CACHE.getDateTimeInstance(dateStyle, timeStyle, timeZone, locale); diff --git a/hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java b/hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java index 49ae0f596..039845a71 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/FileUtil.java @@ -767,12 +767,11 @@ public class FileUtil extends PathUtil { final File[] files = directory.listFiles(); if (ArrayUtil.isEmpty(files)) { // 空文件夹则删除之 - //noinspection ResultOfMethodCallIgnored - directory.delete(); - } else { - for (File childFile : files) { - cleanEmpty(childFile); - } + return directory.delete(); + } + + for (File childFile : files) { + cleanEmpty(childFile); } return true; } @@ -1666,7 +1665,7 @@ public class FileUtil extends PathUtil { * * * @param file 文件 {@link File} - * @return 类型,文件的扩展名,未找到为null + * @return 类型,文件的扩展名,未找到为{@code null} * @throws IORuntimeException IO异常 * @see FileTypeUtil#getType(File) */ diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/CRC16.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/CRC16.java index ebccedb2f..7670946b7 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/CRC16.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/CRC16.java @@ -3,6 +3,7 @@ package cn.hutool.core.io.checksum; import cn.hutool.core.io.checksum.crc16.CRC16Checksum; import cn.hutool.core.io.checksum.crc16.CRC16IBM; +import java.io.Serializable; import java.util.zip.Checksum; /** @@ -11,7 +12,7 @@ import java.util.zip.Checksum; * @author looly * @since 4.4.1 */ -public class CRC16 implements Checksum { +public class CRC16 implements Checksum, Serializable { private static final long serialVersionUID = 1L; private final CRC16Checksum crc16; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Ansi.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Ansi.java index 44830d137..a56d12a5a 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Ansi.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Ansi.java @@ -7,6 +7,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16Ansi extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xa001; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITT.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITT.java index 2279fdc37..a26ebbdc9 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITT.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITT.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16CCITT extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0x8408; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java index bdfd203ff..138b6e2f7 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16CCITTFalse.java @@ -7,6 +7,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16CCITTFalse extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0x1021; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16DNP.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16DNP.java index c03649791..f1bf0cb42 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16DNP.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16DNP.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16DNP extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xA6BC; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16IBM.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16IBM.java index fdc793bca..16529ae10 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16IBM.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16IBM.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16IBM extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xa001; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Maxim.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Maxim.java index 38f916cd8..3c09ed20b 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Maxim.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Maxim.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16Maxim extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xa001; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Modbus.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Modbus.java index 4d4ee64a5..ede0185b7 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Modbus.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16Modbus.java @@ -9,6 +9,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16Modbus extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xa001; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16USB.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16USB.java index 143e7aba0..44d41ddab 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16USB.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16USB.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16USB extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0xa001; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16X25.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16X25.java index 140e6ab15..99b82142b 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16X25.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16X25.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16X25 extends CRC16Checksum{ + private static final long serialVersionUID = 1L; private static final int WC_POLY = 0x8408; diff --git a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16XModem.java b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16XModem.java index 27d8c5235..299a2b5c0 100644 --- a/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16XModem.java +++ b/hutool-core/src/main/java/cn/hutool/core/io/checksum/crc16/CRC16XModem.java @@ -8,6 +8,7 @@ package cn.hutool.core.io.checksum.crc16; * @since 5.3.10 */ public class CRC16XModem extends CRC16Checksum{ + private static final long serialVersionUID = 1L; // 0001 0000 0010 0001 (0, 5, 12) private static final int WC_POLY = 0x1021; diff --git a/hutool-core/src/main/java/cn/hutool/core/lang/Validator.java b/hutool-core/src/main/java/cn/hutool/core/lang/Validator.java index f25b44117..3fd15c862 100644 --- a/hutool-core/src/main/java/cn/hutool/core/lang/Validator.java +++ b/hutool-core/src/main/java/cn/hutool/core/lang/Validator.java @@ -92,7 +92,7 @@ public class Validator { public final static Pattern PLATE_NUMBER = PatternPool.PLATE_NUMBER; /** - * 给定值是否为true + * 给定值是否为{@code true} * * @param value 值 * @return 是否为true @@ -103,7 +103,7 @@ public class Validator { } /** - * 给定值是否不为false + * 给定值是否不为{@code false} * * @param value 值 * @return 是否不为false @@ -114,7 +114,7 @@ public class Validator { } /** - * 检查指定值是否为true + * 检查指定值是否为{@code true} * * @param value 值 * @param errorMsgTemplate 错误消息内容模板(变量使用{}表示) @@ -131,7 +131,7 @@ public class Validator { } /** - * 检查指定值是否为false + * 检查指定值是否为{@code false} * * @param value 值 * @param errorMsgTemplate 错误消息内容模板(变量使用{}表示) @@ -148,7 +148,7 @@ public class Validator { } /** - * 给定值是否为null + * 给定值是否为{@code null} * * @param value 值 * @return 是否为null @@ -158,7 +158,7 @@ public class Validator { } /** - * 给定值是否不为null + * 给定值是否不为{@code null} * * @param value 值 * @return 是否不为null @@ -168,7 +168,7 @@ public class Validator { } /** - * 检查指定值是否为null + * 检查指定值是否为{@code null} * * @param 被检查的对象类型 * @param value 值 @@ -186,7 +186,7 @@ public class Validator { } /** - * 检查指定值是否非null + * 检查指定值是否非{@code null} * * @param 被检查的对象类型 * @param value 值 diff --git a/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java b/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java index 9680675a6..52966b801 100644 --- a/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java +++ b/hutool-core/src/main/java/cn/hutool/core/map/BiMap.java @@ -13,6 +13,7 @@ import java.util.Map; * @since 5.2.6 */ public class BiMap extends MapWrapper { + private static final long serialVersionUID = 1L; private Map inverse; diff --git a/hutool-core/src/main/java/cn/hutool/core/net/NetUtil.java b/hutool-core/src/main/java/cn/hutool/core/net/NetUtil.java index a27af3716..910887cd3 100644 --- a/hutool-core/src/main/java/cn/hutool/core/net/NetUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/net/NetUtil.java @@ -296,7 +296,7 @@ public class NetUtil { * 获取指定名称的网卡信息 * * @param name 网络接口名,例如Linux下默认是eth0 - * @return 网卡,未找到返回null + * @return 网卡,未找到返回{@code null} * @since 5.0.7 */ public static NetworkInterface getNetworkInterface(String name) { @@ -321,7 +321,7 @@ public class NetUtil { /** * 获取本机所有网卡 * - * @return 所有网卡,异常返回null + * @return 所有网卡,异常返回{@code null} * @since 3.0.1 */ public static Collection getNetworkInterfaces() { @@ -425,11 +425,11 @@ public class NetUtil { /** * 获取本机网卡IP地址,这个地址为所有网卡中非回路地址的第一个
* 如果获取失败调用 {@link InetAddress#getLocalHost()}方法获取。
- * 此方法不会抛出异常,获取失败将返回null
+ * 此方法不会抛出异常,获取失败将返回{@code null}
*

* 参考:http://stackoverflow.com/questions/9481865/getting-the-ip-address-of-the-current-machine-using-java * - * @return 本机网卡IP地址,获取失败返回null + * @return 本机网卡IP地址,获取失败返回{@code null} * @since 3.0.7 */ public static String getLocalhostStr() { @@ -448,11 +448,11 @@ public class NetUtil { * 2. 如果无满足要求的地址,调用 {@link InetAddress#getLocalHost()} 获取地址 * *

- * 此方法不会抛出异常,获取失败将返回null
+ * 此方法不会抛出异常,获取失败将返回{@code null}
*

* 见:https://github.com/looly/hutool/issues/428 * - * @return 本机网卡IP地址,获取失败返回null + * @return 本机网卡IP地址,获取失败返回{@code null} * @since 3.0.1 */ public static InetAddress getLocalhost() { @@ -674,6 +674,7 @@ public class NetUtil { * @since 4.4.1 * @deprecated 拼写错误,请使用{@link #isUnknown(String)} */ + @Deprecated public static boolean isUnknow(String checkString) { return isUnknown(checkString); } diff --git a/hutool-core/src/main/java/cn/hutool/core/util/ArrayUtil.java b/hutool-core/src/main/java/cn/hutool/core/util/ArrayUtil.java index 328ca2efe..ccf42f12b 100644 --- a/hutool-core/src/main/java/cn/hutool/core/util/ArrayUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/util/ArrayUtil.java @@ -1765,7 +1765,7 @@ public class ArrayUtil extends PrimitiveArrayUtil { // O(n)时间复杂度检查数组是否有序 /** - * 检查数组是否有序,即comparator.compare(array[i], array[i + 1]) <= 0,若传入空数组或空比较器,则返回false + * 检查数组是否有序,即comparator.compare(array[i], array[i + 1]) <= 0,若传入空数组或空比较器,则返回false * * @param array 数组 * @param comparator 比较器 @@ -1788,7 +1788,7 @@ public class ArrayUtil extends PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i].compareTo(array[i + 1]) <= 0,若传入空数组,则返回false + * 检查数组是否升序,即array[i].compareTo(array[i + 1]) <= 0,若传入空数组,则返回false * * @param 数组元素类型,该类型需要实现Comparable接口 * @param array 数组 @@ -1802,7 +1802,7 @@ public class ArrayUtil extends PrimitiveArrayUtil { /** - * 检查数组是否升序,即array[i].compareTo(array[i + 1]) <= 0,若传入空数组,则返回false + * 检查数组是否升序,即array[i].compareTo(array[i + 1]) <= 0,若传入空数组,则返回false * * @param 数组元素类型,该类型需要实现Comparable接口 * @param array 数组 @@ -1825,7 +1825,7 @@ public class ArrayUtil extends PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i].compareTo(array[i + 1]) >= 0,若传入空数组,则返回false + * 检查数组是否降序,即array[i].compareTo(array[i + 1]) >= 0,若传入空数组,则返回false * * @param 数组元素类型,该类型需要实现Comparable接口 * @param array 数组 diff --git a/hutool-core/src/main/java/cn/hutool/core/util/PrimitiveArrayUtil.java b/hutool-core/src/main/java/cn/hutool/core/util/PrimitiveArrayUtil.java index 2c272a1f0..bd46734e4 100644 --- a/hutool-core/src/main/java/cn/hutool/core/util/PrimitiveArrayUtil.java +++ b/hutool-core/src/main/java/cn/hutool/core/util/PrimitiveArrayUtil.java @@ -3005,7 +3005,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3017,7 +3017,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3039,7 +3039,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3061,7 +3061,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3073,7 +3073,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3095,7 +3095,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3117,7 +3117,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3129,7 +3129,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3151,7 +3151,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3173,7 +3173,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3185,7 +3185,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3207,7 +3207,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3229,7 +3229,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3241,7 +3241,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3263,7 +3263,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3285,7 +3285,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3297,7 +3297,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3319,7 +3319,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 @@ -3341,7 +3341,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3353,7 +3353,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false + * 检查数组是否升序,即array[i] <= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否升序 @@ -3375,7 +3375,7 @@ public class PrimitiveArrayUtil { } /** - * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false + * 检查数组是否降序,即array[i] >= array[i+1],若传入空数组,则返回false * * @param array 数组 * @return 数组是否降序 diff --git a/hutool-core/src/test/java/cn/hutool/core/comparator/VersionComparatorTest.java b/hutool-core/src/test/java/cn/hutool/core/comparator/VersionComparatorTest.java index 976ed2240..5a969f199 100644 --- a/hutool-core/src/test/java/cn/hutool/core/comparator/VersionComparatorTest.java +++ b/hutool-core/src/test/java/cn/hutool/core/comparator/VersionComparatorTest.java @@ -51,6 +51,6 @@ public class VersionComparatorTest { public void equalsTest(){ VersionComparator first = new VersionComparator(); VersionComparator other = new VersionComparator(); - Assert.assertFalse(first.equals(other)); + Assert.assertNotEquals(first, other); } } diff --git a/hutool-crypto/src/main/java/cn/hutool/crypto/symmetric/SM4.java b/hutool-crypto/src/main/java/cn/hutool/crypto/symmetric/SM4.java index bd8c7ccc7..a89c4ef09 100644 --- a/hutool-crypto/src/main/java/cn/hutool/crypto/symmetric/SM4.java +++ b/hutool-crypto/src/main/java/cn/hutool/crypto/symmetric/SM4.java @@ -90,7 +90,7 @@ public class SM4 extends SymmetricCrypto{ * @param iv 偏移向量,加盐 */ public SM4(Mode mode, Padding padding, SecretKey key, byte[] iv) { - this(mode, padding, key, ArrayUtil.isEmpty(iv) ? ((IvParameterSpec) null) : new IvParameterSpec(iv)); + this(mode, padding, key, ArrayUtil.isEmpty(iv) ? null : new IvParameterSpec(iv)); } /** @@ -137,7 +137,7 @@ public class SM4 extends SymmetricCrypto{ public SM4(String mode, String padding, byte[] key, byte[] iv) { this(mode, padding,// SecureUtil.generateKey(ALGORITHM_NAME, key),// - ArrayUtil.isEmpty(iv) ? ((IvParameterSpec) null) : new IvParameterSpec(iv)); + ArrayUtil.isEmpty(iv) ? null : new IvParameterSpec(iv)); } /** diff --git a/hutool-db/src/main/java/cn/hutool/db/meta/Column.java b/hutool-db/src/main/java/cn/hutool/db/meta/Column.java index a7edbb18c..f2466d066 100644 --- a/hutool-db/src/main/java/cn/hutool/db/meta/Column.java +++ b/hutool-db/src/main/java/cn/hutool/db/meta/Column.java @@ -65,6 +65,7 @@ public class Column implements Serializable, Cloneable { * @return 列对象 * @deprecated 请使用 {@link #create(Table, ResultSet)} */ + @Deprecated public static Column create(String tableName, ResultSet columnMetaRs) { return new Column(tableName, columnMetaRs); } diff --git a/hutool-db/src/test/java/cn/hutool/db/UpdateTest.java b/hutool-db/src/test/java/cn/hutool/db/UpdateTest.java index 311baf9b0..1b43c02f8 100644 --- a/hutool-db/src/test/java/cn/hutool/db/UpdateTest.java +++ b/hutool-db/src/test/java/cn/hutool/db/UpdateTest.java @@ -29,6 +29,6 @@ public class UpdateTest { int update = db.update(Entity.create("user").set("age", 88), Entity.create().set("name", "unitTestUser")); Assert.assertTrue(update > 0); Entity result2 = db.get("user", "name", "unitTestUser"); - Assert.assertSame(88, (int) result2.getInt("age")); + Assert.assertSame(88, result2.getInt("age")); } } diff --git a/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlTemplate.java b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlTemplate.java index 2916687ca..cb4067269 100644 --- a/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlTemplate.java +++ b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlTemplate.java @@ -1,12 +1,12 @@ package cn.hutool.extra.template.engine.beetl; +import cn.hutool.extra.template.AbstractTemplate; + import java.io.OutputStream; import java.io.Serializable; import java.io.Writer; import java.util.Map; -import cn.hutool.extra.template.AbstractTemplate; - /** * Beetl模板实现 * @@ -21,7 +21,7 @@ public class BeetlTemplate extends AbstractTemplate implements Serializable{ * 包装Beetl模板 * * @param beetlTemplate Beetl的模板对象 {@link org.beetl.core.Template} - * @return {@link BeetlTemplate} + * @return BeetlTemplate */ public static BeetlTemplate wrap(org.beetl.core.Template beetlTemplate) { return (null == beetlTemplate) ? null : new BeetlTemplate(beetlTemplate); diff --git a/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlUtil.java b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlUtil.java index 36d182b56..583a46f38 100644 --- a/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlUtil.java +++ b/hutool-extra/src/main/java/cn/hutool/extra/template/engine/beetl/BeetlUtil.java @@ -260,7 +260,7 @@ public final class BeetlUtil { /** * 创建 * - * @return {@link ResourceLoaderBuilder} + * @return ResourceLoaderBuilder */ public static ResourceLoaderBuilder create() { return new ResourceLoaderBuilder(); @@ -271,7 +271,7 @@ public final class BeetlUtil { * * @param matcher {@link Matcher} 匹配器 * @param resourceLoader {@link ResourceLoader} 匹配时对应的资源加载器 - * @return {@link ResourceLoaderBuilder} + * @return ResourceLoaderBuilder */ public ResourceLoaderBuilder add(Matcher matcher, ResourceLoader resourceLoader) { compositeResourceLoader.addResourceLoader(matcher, resourceLoader); diff --git a/hutool-extra/src/test/java/cn/hutool/extra/emoji/EmojiUtilTest.java b/hutool-extra/src/test/java/cn/hutool/extra/emoji/EmojiUtilTest.java index f307e4fe3..f821245fe 100644 --- a/hutool-extra/src/test/java/cn/hutool/extra/emoji/EmojiUtilTest.java +++ b/hutool-extra/src/test/java/cn/hutool/extra/emoji/EmojiUtilTest.java @@ -20,9 +20,9 @@ public class EmojiUtilTest { @Test public void containsEmojiTest() { boolean containsEmoji = EmojiUtil.containsEmoji("测试一下是否包含EMOJ:😄"); - Assert.assertEquals(containsEmoji, true); + Assert.assertTrue(containsEmoji); boolean notContainsEmoji = EmojiUtil.containsEmoji("不包含EMOJ:^_^"); - Assert.assertEquals(notContainsEmoji, false); + Assert.assertFalse(notContainsEmoji); } } diff --git a/hutool-http/src/main/java/cn/hutool/http/HTMLFilter.java b/hutool-http/src/main/java/cn/hutool/http/HTMLFilter.java index ec9097448..b333c68d8 100644 --- a/hutool-http/src/main/java/cn/hutool/http/HTMLFilter.java +++ b/hutool-http/src/main/java/cn/hutool/http/HTMLFilter.java @@ -1,5 +1,8 @@ package cn.hutool.http; +import cn.hutool.core.lang.Console; +import cn.hutool.core.util.CharUtil; + import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; @@ -10,9 +13,6 @@ import java.util.concurrent.ConcurrentMap; import java.util.regex.Matcher; import java.util.regex.Pattern; -import cn.hutool.core.lang.Console; -import cn.hutool.core.util.CharUtil; - /** * HTML过滤器,用于去除XSS(Cross Site Scripting) 漏洞隐患。 * @@ -74,11 +74,11 @@ public final class HTMLFilter { private final Map vTagCounts = new HashMap<>(); /** - * html elements which must always be self-closing (e.g. "") + * html elements which must always be self-closing (e.g. "<img />") **/ private final String[] vSelfClosingTags; /** - * html elements which must always have separate opening and closing tags (e.g. "") + * html elements which must always have separate opening and closing tags (e.g. "<b></b>") **/ private final String[] vNeedClosingTags; /** @@ -94,7 +94,7 @@ public final class HTMLFilter { **/ private final String[] vAllowedProtocols; /** - * tags which should be removed if they contain no content (e.g. "" or "") + * tags which should be removed if they contain no content (e.g. "<b></b>" or "<b />") **/ private final String[] vRemoveBlanks; /** @@ -108,7 +108,8 @@ public final class HTMLFilter { private final boolean encodeQuotes; private boolean vDebug = false; /** - * flag determining whether to try to make tags when presented with "unbalanced" angle brackets (e.g. "" becomes " text "). If set to false, unbalanced angle brackets will be + * flag determining whether to try to make tags when presented with "unbalanced" angle brackets (e.g. "<b text </b>" becomes "<b> text </g>"). + * If set to false, unbalanced angle brackets will be * html escaped. */ private final boolean alwaysMakeTags; @@ -452,7 +453,7 @@ public final class HTMLFilter { Matcher m = P_ENTITY.matcher(s); while (m.find()) { final String match = m.group(1); - final int decimal = Integer.decode(match).intValue(); + final int decimal = Integer.decode(match); m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); } m.appendTail(buf); @@ -462,7 +463,7 @@ public final class HTMLFilter { m = P_ENTITY_UNICODE.matcher(s); while (m.find()) { final String match = m.group(1); - final int decimal = Integer.valueOf(match, 16).intValue(); + final int decimal = Integer.parseInt(match, 16); m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); } m.appendTail(buf); @@ -472,7 +473,7 @@ public final class HTMLFilter { m = P_ENCODE.matcher(s); while (m.find()) { final String match = m.group(1); - final int decimal = Integer.valueOf(match, 16).intValue(); + final int decimal = Integer.parseInt(match, 16); m.appendReplacement(buf, Matcher.quoteReplacement(chr(decimal))); } m.appendTail(buf);