24.1. org.apache.commons.lang3
24.1.1. HTML 标签处理
package cn.netkiller.apache.lang; import org.apache.commons.lang3.StringEscapeUtils; @SuppressWarnings("deprecation") public class LangTest { public static void main(String[] args) { // TODO Auto-generated method stub String html = "<span>Neo's book</span>"; String encode = StringEscapeUtils.escapeHtml4(html); String decode = StringEscapeUtils.unescapeHtml4(encode); System.out.println(encode); System.out.println(decode); } }
24.1.2. StringUtils.join 使用特定字符链接字符串
下面例子使用逗号链接字符串
org.apache.commons.lang.StringUtils.join(arraylist, ',')
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。
时间: 2024-10-12 22:03:25