作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
this question的答案主要建议使用 apache-common-text StringEscapeUtils
.但是这个(commons-text 的最新版本是 1.9)只支持 HTML 4,而且 Mastodon appears to use HTML 5其中包括 '
.如何解码 HTML 5 实体,包括 '
?
最佳答案
unbescape做得好:
final String unescapedText = HtmlEscape.unescapeHtml("'");
System.out.println(unescapedText);
结果:
'
<!-- https://mvnrepository.com/artifact/org.unbescape/unbescape -->
<dependency>
<groupId>org.unbescape</groupId>
<artifactId>unbescape</artifactId>
<version>1.1.6.RELEASE</version>
</dependency>
关于java - 如何在 Java (') 中取消转义 HTML 5 实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68058334/
我是一名优秀的程序员,十分优秀!