我找不到任何解释为什么Apache Lang3 v3.7中不推荐使用StringEscapeUtils。
https://commons.apache.org/proper/commons- lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html
我们现在应该使用什么来进行HTML转义/转义
班级已从包裹中移出
org.apache.commons。 lang3
至
org.apache.commons。 文本
您可以轻松替换不推荐使用的库:
在您的build.gradle中:
implementation 'org.apache.commons:commons-text:1.9'
并在您的班级中使用,请StringEscapeUtils确保您导入了正确的班级:
StringEscapeUtils
import org.apache.commons.text.StringEscapeUtils;
1.9当前是最新版本(最新检查为2020年8月24日),但您可以在maven中检查版本:https : //mvnrepository.com/artifact/org.apache.commons/commons- text