org.apache.commons.lang3.StringUtils得使用

2024-03-19 12:38

本文主要是介绍org.apache.commons.lang3.StringUtils得使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

package com.zheting.my.utils;import java.nio.charset.Charset;import org.apache.commons.lang3.StringUtils;public class MyStringUtils {/*** public static String abbreviate(String str, int maxWidth) * 字符串 简写 缩写*/public void test02() {System.out.println(StringUtils.abbreviate(null, 1)); // nullSystem.out.println(StringUtils.abbreviate("", 4)); // "";System.out.println(StringUtils.abbreviate("abcdefg", 6)); // "abc...";System.out.println(StringUtils.abbreviate("abcdefg", 7)); // "abcdefg"System.out.println(StringUtils.abbreviate("abcdefg", 8)); // "abcdefg"System.out.println(StringUtils.abbreviate("abcdefg", 4)); // "a..."System.out.println(StringUtils.abbreviate("abcdefg", 3)); // IllegalArgumentException}/*** public static String abbreviate(String str, int offset, int maxWidth) * 字符串 简写 缩写*/public void test03() {System.out.println(StringUtils.abbreviate(null, 0, 4)); // nullSystem.out.println(StringUtils.abbreviate("", 0, 4)); // ""System.out.println(StringUtils.abbreviate("abcdefghijklmno", -1, 10));// "abcdefg..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 0, 10));// "abcdefg..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 1, 10));// "abcdefg..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 4, 10));// "abcdefg..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 5, 10));// "...fghi..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 6, 10));// "...ghij..."System.out.println(StringUtils.abbreviate("abcdefghijklmno", 8, 10));// "...ijklmno"System.out.println(StringUtils.abbreviate("abcdefghijklmno", 10, 10));// "...ijklmno"System.out.println(StringUtils.abbreviate("abcdefghijklmno", 12, 10));// "...ijklmno"System.out.println(StringUtils.abbreviate("abcdefghij", 0, 3));// IllegalArgumentExceptionSystem.out.println(StringUtils.abbreviate("abcdefghij", 5, 6));// IllegalArgumentException}/*** public static String difference(String str1, String str2)* 比较两个字符串,返回字符串str2和str1不同的部分*/public void test04() {System.out.println(StringUtils.difference(null, null));// nullSystem.out.println(StringUtils.difference("", ""));// ""System.out.println(StringUtils.difference("", "abc"));// "abc"System.out.println(StringUtils.difference("abc", ""));// ""System.out.println(StringUtils.difference("abc", "abc"));// ""System.out.println(StringUtils.difference("abc", "ab"));// ""System.out.println(StringUtils.difference("ab", "abxyz"));// "xyz"System.out.println(StringUtils.difference("abcde", "abxyz"));// "xyz"System.out.println(StringUtils.difference("abcde", "xyz"));// "xyz"}/*** public static int indexOfDifference(CharSequence cs1, CharSequence cs2)* cs1和cs2比较,返回cs2与cs1开始不同的索引值*/public void test05() {System.out.println(StringUtils.indexOfDifference(null, null));// -1System.out.println(StringUtils.indexOfDifference("", ""));// -1System.out.println(StringUtils.indexOfDifference("", "abc"));// 0System.out.println(StringUtils.indexOfDifference("abc", ""));// 0System.out.println(StringUtils.indexOfDifference("abc", "abc"));// -1System.out.println(StringUtils.indexOfDifference("ab", "abxyz"));// 2System.out.println(StringUtils.indexOfDifference("abcde", "abxyz"));// 2System.out.println(StringUtils.indexOfDifference("abcde", "xyz"));// 0}/*** public static boolean startsWith(CharSequence str, CharSequence prefix)* 判断str是否以prefix开头*/public void test06() {System.out.println(StringUtils.startsWith(null, null));// trueSystem.out.println(StringUtils.startsWith(null, "abc"));// falseSystem.out.println(StringUtils.startsWith("abcdef", null));// falseSystem.out.println(StringUtils.startsWith("abcdef", "abc"));// trueSystem.out.println(StringUtils.startsWith("ABCDEF", "abc"));// false}/*** public static boolean startsWithIgnoreCase(CharSequence str, CharSequence prefix) * 判断str是否以prefix开头,但是忽略大小写*/public void test07() {System.out.println(StringUtils.startsWithIgnoreCase(null, null));// trueSystem.out.println(StringUtils.startsWithIgnoreCase(null, "abc"));// falseSystem.out.println(StringUtils.startsWithIgnoreCase("abcdef", null));// falseSystem.out.println(StringUtils.startsWithIgnoreCase("abcdef", "abc"));// trueSystem.out.println(StringUtils.startsWithIgnoreCase("ABCDEF", "abc"));// true}/*** public static boolean startsWithAny(CharSequence string, CharSequence...searchStrings)* 第二个不定参数中的任何一个字符和第一个参数的开头相同,就返回true*/public void test08() {System.out.println(StringUtils.startsWithAny(null, null));// falseSystem.out.println(StringUtils.startsWithAny(null,new String[] { "abc" }));// falseSystem.out.println(StringUtils.startsWithAny("abcxyz", null));// falseSystem.out.println(StringUtils.startsWithAny("abcxyz",new String[] { "" }));// falseSystem.out.println(StringUtils.startsWithAny("abcxyz",  new String[] { "abc" }));// trueSystem.out.println(StringUtils.startsWithAny("abcxyz", new String[] {null, "xyz", "abc" }));// true}/*** public static boolean endsWith(CharSequence str, CharSequence suffix) * 判断str是否以suffix结尾*/public void test09(){System.out.println(StringUtils.endsWith(null, null));// trueSystem.out.println(StringUtils.endsWith(null, "def"));// falseSystem.out.println( StringUtils.endsWith("abcdef", null));// falseSystem.out.println(StringUtils.endsWith("abcdef", "def"));// trueSystem.out.println( StringUtils.endsWith("ABCDEF", "def"));// falseSystem.out.println( StringUtils.endsWith("ABCDEF", "cde"));// false}/*** public static boolean endsWithAny(CharSequence string,  CharSequence... searchStrings)* 第一个参数string以不定参数searchStrings中的任何一个结尾,返回true*/public void test10(){System.out.println( StringUtils.endsWithAny(null, null));// falseSystem.out.println( StringUtils.endsWithAny(null, new String[] {"abc"}));// falseSystem.out.println( StringUtils.endsWithAny("abcxyz", null) );// falseSystem.out.println( StringUtils.endsWithAny("abcxyz", new String[] {""}));// trueSystem.out.println(StringUtils.endsWithAny("abcxyz", new String[] {"xyz"}));// trueSystem.out.println( StringUtils.endsWithAny("abcxyz", new String[] {null, "xyz", "abc"}));// trueSystem.out.println( StringUtils.endsWithAny("abcxyz", new String[] {null, "XYZ", "abc"}));// false}/*** public static String normalizeSpace(String str)* 去掉前后的空格,以及中间多余的空格,只保留一个空格*/public void test11(){String str = "   aa     cc  bb dd            ee        "; //aa cc bb dd eeSystem.out.println(StringUtils.normalizeSpace(str));}/*** public static String appendIfMissing(String str, CharSequence suffix,  CharSequence... suffixes)* Appends the suffix to the end of the string if the string does not already end with any the suffixes.* 如果str不是以suffixes中的任何一个结尾,那么把suffix添加到str后面。区分大小写*/public void test12(){//因为suffixes是不定参数,因此可以省略System.out.println(StringUtils.appendIfMissing(null, null));// nullSystem.out.println(StringUtils.appendIfMissing("abc", null) );// "abc"System.out.println(StringUtils.appendIfMissing("", "xyz") );// "xyz"System.out.println(StringUtils.appendIfMissing("abc", "xyz"));// "abcxyz"System.out.println(StringUtils.appendIfMissing("abcxyz", "xyz"));// "abcxyz"System.out.println(StringUtils.appendIfMissing("abcXYZ", "xyz"));// "abcXYZxyz"System.out.println(StringUtils.appendIfMissing(null, null, null));// nullSystem.out.println(StringUtils.appendIfMissing("abc", null, null));// "abc"System.out.println( StringUtils.appendIfMissing("", "xyz", null));// "xyz"System.out.println( StringUtils.appendIfMissing("abc", "xyz", new CharSequence[]{null}) );// "abcxyz"System.out.println(StringUtils.appendIfMissing("abc", "xyz", ""));// "abc"System.out.println( StringUtils.appendIfMissing("abc", "xyz", "mno"));// "abcxyz"System.out.println( StringUtils.appendIfMissing("abcxyz", "xyz", "mno"));// "abcxyz"  后缀本来就和添加的相同的,就不提添加System.out.println(StringUtils.appendIfMissing("abcmno", "xyz", "mno"));// "abcmno"System.out.println( StringUtils.appendIfMissing("abcXYZ", "xyz", "mno"));// "abcXYZxyz"System.out.println(StringUtils.appendIfMissing("abcMNO", "xyz", "mno") );// "abcMNOxyz"}/*** public static String appendIfMissingIgnoreCase(String str, CharSequence suffix, CharSequence... suffixes)* Appends the suffix to the end of the string if the string does not already end, case insensitive, with any of the suffixes.*  如果str不是以suffixes中的任何一个结尾,那么把suffix添加到str后面。不区分大小写*/public void test13(){System.out.println(StringUtils.appendIfMissingIgnoreCase(null, null) );// nullSystem.out.println( StringUtils.appendIfMissingIgnoreCase("abc", null) );// "abc"System.out.println( StringUtils.appendIfMissingIgnoreCase("", "xyz"));// "xyz"System.out.println( StringUtils.appendIfMissingIgnoreCase("abc", "xyz") );// "abcxyz"System.out.println(StringUtils.appendIfMissingIgnoreCase("abcxyz", "xyz"));// "abcxyz"System.out.println( StringUtils.appendIfMissingIgnoreCase("abcXYZ", "xyz"));// "abcXYZ"System.out.println(StringUtils.appendIfMissingIgnoreCase(null, null, null) );// nullSystem.out.println(StringUtils.appendIfMissingIgnoreCase("abc", null, null));// "abc"System.out.println( StringUtils.appendIfMissingIgnoreCase("", "xyz", null) );// "xyz"System.out.println(StringUtils.appendIfMissingIgnoreCase("abc", "xyz", new CharSequence[]{null}) );// "abcxyz"System.out.println( StringUtils.appendIfMissingIgnoreCase("abc", "xyz", "") );// "abc"System.out.println(StringUtils.appendIfMissingIgnoreCase("abc", "xyz", "mno") );// "axyz"System.out.println( StringUtils.appendIfMissingIgnoreCase("abcxyz", "xyz", "mno") );// "abcxyz"System.out.println( StringUtils.appendIfMissingIgnoreCase("abcmno", "xyz", "mno"));// "abcmno"System.out.println(StringUtils.appendIfMissingIgnoreCase("abcXYZ", "xyz", "mno") );// "abcXYZ"System.out.println(StringUtils.appendIfMissingIgnoreCase("abcMNO", "xyz", "mno"));// "abcMNO"}/*** public static String prependIfMissing(String str,  CharSequence prefix, CharSequence... prefixes)* Prepends the prefix to the start of the string if the string does not already start with any of the prefixes.* 如果str以prefixs中的任何一个开头,那么把prefix添加到str的开头。区分大小写。注意prefix和str的开头相同,也不添加。*/public void test14(){System.out.println(StringUtils.prependIfMissing(null, null));// nullSystem.out.println(StringUtils.prependIfMissing("abc", null));// "abc"System.out.println(StringUtils.prependIfMissing("", "xyz"));// "xyz"System.out.println(StringUtils.prependIfMissing("abc", "xyz"));// "xyzabc"System.out.println(StringUtils.prependIfMissing("xyzabc", "xyz"));// "xyzabc"System.out.println(StringUtils.prependIfMissing("XYZabc", "xyz"));// "xyzXYZabc"System.out.println(StringUtils.prependIfMissing(null, null, null));// nullSystem.out.println(StringUtils.prependIfMissing("abc", null, null));// "abc"System.out.println(StringUtils.prependIfMissing("", "xyz", null));// "xyz"System.out.println(StringUtils.prependIfMissing("abc", "xyz", new CharSequence[]{null}));// "xyzabc"System.out.println(StringUtils.prependIfMissing("abc", "xyz", "") );// "abc"System.out.println(StringUtils.prependIfMissing("abc", "xyz", "mno"));// "xyzabc"System.out.println(StringUtils.prependIfMissing("xyzabc", "xyz", "mno"));// "xyzabc"System.out.println(StringUtils.prependIfMissing("mnoabc", "xyz", "mno"));// "mnoabc"System.out.println(StringUtils.prependIfMissing("XYZabc", "xyz", "mno"));// "xyzXYZabc"System.out.println(StringUtils.prependIfMissing("MNOabc", "xyz", "mno"));// "xyzMNOabc"}/*** public static String prependIfMissingIgnoreCase(String str, CharSequence prefix,  CharSequence... prefixes)* Prepends the prefix to the start of the string if the string does not already start, case insensitive, with any of the prefixes.* 如果str以prefixs中的任何一个开头,那么把prefix添加到str的开头。不区分大小写。注意prefix和str的开头相同,也不添加。*/public void test15(){System.out.println(StringUtils.prependIfMissingIgnoreCase(null, null));// nullSystem.out.println(StringUtils.prependIfMissingIgnoreCase("abc", null));// "abc"System.out.println(StringUtils.prependIfMissingIgnoreCase("", "xyz"));// "xyz"System.out.println(StringUtils.prependIfMissingIgnoreCase("abc", "xyz"));// "xyzabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("xyzabc", "xyz"));// "xyzabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("XYZabc", "xyz"));// "XYZabc"System.out.println(StringUtils.prependIfMissingIgnoreCase(null, null, null));// nullSystem.out.println(StringUtils.prependIfMissingIgnoreCase("abc", null, null));// "abc"System.out.println(StringUtils.prependIfMissingIgnoreCase("", "xyz", null));// "xyz"System.out.println(StringUtils.prependIfMissingIgnoreCase("abc", "xyz", new CharSequence[]{null}));// "xyzabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("abc", "xyz", ""));// "abc"System.out.println(StringUtils.prependIfMissingIgnoreCase("abc", "xyz", "mno"));// "xyzabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("xyzabc", "xyz", "mno"));// "xyzabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("mnoabc", "xyz", "mno"));// "mnoabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("XYZabc", "xyz", "mno"));// "XYZabc"System.out.println(StringUtils.prependIfMissingIgnoreCase("MNOabc", "xyz", "mno"));// "MNOabc"}/*** public static String toEncodedString(byte[] bytes,   Charset charset)* 把字节数组bytes按照指定的字符集编码,返回新的字符串。*/public void test16(){System.out.println(StringUtils.toEncodedString("abc".getBytes(), Charset.forName("gbk")));}public static void main(String[] args) {new MyStringUtils().test16();}
}

这篇关于org.apache.commons.lang3.StringUtils得使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/826016

相关文章

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

python管理工具之conda安装部署及使用详解

《python管理工具之conda安装部署及使用详解》这篇文章详细介绍了如何安装和使用conda来管理Python环境,它涵盖了从安装部署、镜像源配置到具体的conda使用方法,包括创建、激活、安装包... 目录pytpshheraerUhon管理工具:conda部署+使用一、安装部署1、 下载2、 安装3

Mysql虚拟列的使用场景

《Mysql虚拟列的使用场景》MySQL虚拟列是一种在查询时动态生成的特殊列,它不占用存储空间,可以提高查询效率和数据处理便利性,本文给大家介绍Mysql虚拟列的相关知识,感兴趣的朋友一起看看吧... 目录1. 介绍mysql虚拟列1.1 定义和作用1.2 虚拟列与普通列的区别2. MySQL虚拟列的类型2

使用MongoDB进行数据存储的操作流程

《使用MongoDB进行数据存储的操作流程》在现代应用开发中,数据存储是一个至关重要的部分,随着数据量的增大和复杂性的增加,传统的关系型数据库有时难以应对高并发和大数据量的处理需求,MongoDB作为... 目录什么是MongoDB?MongoDB的优势使用MongoDB进行数据存储1. 安装MongoDB

关于@MapperScan和@ComponentScan的使用问题

《关于@MapperScan和@ComponentScan的使用问题》文章介绍了在使用`@MapperScan`和`@ComponentScan`时可能会遇到的包扫描冲突问题,并提供了解决方法,同时,... 目录@MapperScan和@ComponentScan的使用问题报错如下原因解决办法课外拓展总结@

mysql数据库分区的使用

《mysql数据库分区的使用》MySQL分区技术通过将大表分割成多个较小片段,提高查询性能、管理效率和数据存储效率,本文就来介绍一下mysql数据库分区的使用,感兴趣的可以了解一下... 目录【一】分区的基本概念【1】物理存储与逻辑分割【2】查询性能提升【3】数据管理与维护【4】扩展性与并行处理【二】分区的

使用Python实现在Word中添加或删除超链接

《使用Python实现在Word中添加或删除超链接》在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能,本文将为大家介绍一下Python如何实现在Word中添加或... 在Word文档中,超链接是一种将文本或图像连接到其他文档、网页或同一文档中不同部分的功能。通过添加超

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学