前言最常用的对字符串操作的类有三个,分别是String,StringBuilder,StringBuffer,下面将会详细的说说这三个类......StringString类代表字符串,这个是最基本的对字符串的类,这个也是使用比较多的类,这
前言
最常用的对字符串操作的类有三个,分别是String,StringBuilder,StringBuffer,下面将会详细的说说这三个类......
String
String类代表字符串,这个是最基本的对字符串的类,这个也是使用比较多的类,这里就不再详细介绍了
构造
new String(String str)
new String(StringBuilder str)
new String(StringBuffer str)
new String(byte[] bys,String charsetName) 通过使用指定的字符集解码指定的 byte 子数组,构造一个新的 String。
常用方法
str charAt(int index) 返回指定索引处的字符
String concat(String str) 将指定字符串str连接到此字符串的结尾,返回连接成功后的字符,因此需要接受才能有效果
boolean contains(CharSequence s) 判断此字符串是否包含指定的char值序列,这里的 CharSequence是一个接口,可以直接使用它的子类作为参数(String,StringBuffer,StringBuild)
static String copyValueOf(char[] c) 将字符数组变成字符串并且返回
static String copyValueOf(char[] c,int off,int count) 将截取的字符数组变成字符串并且返回,off是开始截取的下标,count是截取的个数
boolean endWith(String s) 判断字符串是否是以s结尾
boolean equals(Object o) 用于比较
int indexOf(char c) 返回字符c在字符串中第一次出现的索引
int indexOf(char c,int fromIndex) 从指定索引处开始搜索,查找第一次出现的索引
int indexOf(String str) 返回指定子字符串在此字符串中第一次出现处的索引。
int indexOf(String str,int fromIndex) 返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始。
boolean isEmpty()
int length()
boolean matches(String regex) 是否匹配正则表达式
trim() 返回字符串的副本,忽略前导空白和尾部空白。
String substring(int beginIndex) 返回一个新的字符串,它是此字符串的一个子字符串。
String substring(int beginIndex, int endIndex) 返回一个新字符串,它是此字符串的一个子字符串。
String toUpperCase() 使用默认语言环境的规则将此 String 中的所有字符都转换为大写。
String[] split(String regex) 根据给定正则表达式的匹配拆分此字符串。
String[] split(String regex, int limit) 根据匹配给定的正则表达式来拆分此字符串。
char[] toCharArray() 将此字符串转换为一个新的字符数组。
byte[] getBytes(Charset charset) 使用给定的 charset 将此 String 编码到 byte 序列,并将结果存储到新的 byte 数组
注意
上面的new String(byte[] bys,String charsetName)这个构造方法很重要,它可以改变字符串的编码集(和byte[] getBytes(Charset charset))配合着使用,下面我们来看一个例子,代码如下:
// 将GBK格式的中文写入a.txt文件File file = new File("src/a.txt");FileOutputStream fileOutputStream = new FileOutputStream(file);String str = "中";byte[] by = str.getBytes("GBK"); // 将字符串改为GBK编码集fileOutputStream.write(by);fileOutputStream.close();//从a.txt文件中读取中文FileInputStream fileInputStream = new FileInputStream(file);int len;byte[] bys = new byte[4];while ((len = fileInputStream.read(bys)) != -1) { System.out.println(new String(bys, "GBK"));}fileInputStream.close();
--结束END--
本文标题: 老生常谈Java字符串进阶(必看篇)
本文链接: https://lsjlt.com/news/225448.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0