其他分享
首页 > 其他分享> > 富文本字符串过滤标签

富文本字符串过滤标签

作者:互联网

<!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.14.3</version>
</dependency>

 

 

Page<CmsArticle> cmsArticleList = cmsArticleService.findPage(pageDTO);
cmsArticleList.forEach(item -> {
String content = Jsoup.parse(item.getContent()).text();
// 截取前120位
Integer contentLength = content.length();
content = content.substring(0, contentLength >= 120 ? 120 : contentLength);
item.setContent(content+"...");
});

标签:120,cmsArticleList,标签,contentLength,content,item,jsoup,字符串,文本
来源: https://www.cnblogs.com/xiao1993/p/15588564.html