commons-text StrBuilder字符串构建工具类例子

Posted junge8618

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了commons-text StrBuilder字符串构建工具类例子相关的知识,希望对你有一定的参考价值。


package
com.skylink.junge.demo; import java.util.ArrayList; import java.util.List; import org.apache.commons.text.StrBuilder; public class StrBuilderTest { public static void main(String[] args) { String[] strs = new String[]{"111", "222", "333"}; StrBuilder strBuilder = new StrBuilder(); System.out.println(strBuilder.appendWithSeparators(strs, ",")); List<String> strList = new ArrayList<String>(3); strList.add("444"); strList.add("555"); strList.add("666"); strBuilder.clear(); System.out.println(strBuilder.appendWithSeparators(strList, ",")); } }

运行结果:

技术分享图片

使用场景:可以再拼接sql条件时使用。


以上是关于commons-text StrBuilder字符串构建工具类例子的主要内容,如果未能解决你的问题,请参考以下文章

Maven对apache commons-text的依赖?

Java 使用hutool工具类代替commons-text进行Json 中文 Unicode转换

CosineSimilarity

StringUtils

StringUtils

java执行cmd命令并获取输出结果