I couldn't find any explanation why StringEscapeUtils was deprecated from Apache Lang3 v3.7.
What are we supposed to use now for HTML escaping/unescaping
I couldn't find any explanation why StringEscapeUtils was deprecated from Apache Lang3 v3.7.
What are we supposed to use now for HTML escaping/unescaping
Do below steps
Add below dependency to your pom.xml (if using maven)
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>1.4</version>
<dependency>
Import correct package as below
import org.apache.commons.text.StringEscapeUtils;
From Commons-lang 3.6 release notes:
The Apache Commons Community has recently set up the Commons Text component as a home for algorithms working on strings. For this reason most of the string focused functionality in Commons Lang has been deprecated and moved to Commons Text. This includes:
o All classes in the org.apache.commons.lang3.text and the org.apache.commons.lang3.text.translate packages o org.apache.commons.lang3.StringEscapeUtils o org.apache.commons.lang3.RandomStringUtils o The methods org.apache.commons.lang3.StringUtils.getJaroWinklerDistance and org.apache.commons.lang3.StringUtils.getLevenshteinDistance
For more information see the Commons Text website:
http://commons.apache.org/text
The class was moved from package
to
You can replace the deprecated library easily:
In your build.gradle:
And in your class using
StringEscapeUtils
make sure you import the correct class:1.11.0 is currently the newest version (last checked February 20th 2024) but you can check the versions at maven: https://mvnrepository.com/artifact/org.apache.commons/commons-text