小编典典

为什么不建议使用org.apache.common.lang3 StringEscapeUtils?

java

我找不到任何解释为什么Apache Lang3 v3.7中不推荐使用StringEscapeUtils。

https://commons.apache.org/proper/commons-
lang/apidocs/org/apache/commons/lang3/StringEscapeUtils.html

我们现在应该使用什么来进行HTML转义/转义


阅读 765

收藏
2020-12-03

共1个答案

小编典典

班级已从包裹中移出

org.apache.commons。 lang3

org.apache.commons。 文本

您可以轻松替换不推荐使用的库:

在您的build.gradle中:

implementation 'org.apache.commons:commons-text:1.9'

并在您的班级中使用,请StringEscapeUtils确保您导入了正确的班级:

import org.apache.commons.text.StringEscapeUtils;

1.9当前是最新版本(最新检查为2020年8月24日),但您可以在maven中检查版本:https : //mvnrepository.com/artifact/org.apache.commons/commons-
text

2020-12-03