java转义文本中的HTML字符为安全的字

,以下字符被转义:
' 替换为 ' (' doesn't work in HTML4)
" 替换为 "
& 替换为 &
< 替换为 &lt;
> 替换为 &gt;

1.先添加hutool依赖到pom

 <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>5.8.16</version>
        </dependency>

2.代码案例

  public static void main(String[] args) throws Exception{
        String escape = HtmlUtil.escape(">=和<=");
        System.out.println(escape);
    }

在这里插入图片描述

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部