Java String 类

Java.lang 包提供了一个表示字符的 String 类字符串。 Java 程序中的所有字符串文字(例如“xyz”)都是作为此类的实例实现的。字符串是恒定的;它们的值在创建后就不能更改。

类声明

java.lang.String类的声明是:

 public final class String
  extends Object
    implements Serializable, Comparable<String>, CharSequence

字段

序号字段和说明
1.static ComparatornootransLStringnootransR CASE_INSENSITIVE_ORDER
通过compareToIgnoreCase对String对象进行排序的比较器.

类构造函数

序号构造函数和说明
1.String()
初始化一个新创建的String对象,使其表示一个空的字符序列.
2.String(byte[] bytes)
通过解码构造一个新的 String使用平台默认字符集的指定字节数组.
3.String(byte[] bytes, Charset charset)
通过使用指定的字符集解码指定的字节数组来构造一个新的 String.
4.String(byte [] bytes, int offset, int length)
通过使用平台的默认字符集解码指定的字节子数组来构造一个新的 String.
5.String(byte[] bytes, int offset, int length, Charset charset)
通过使用指定的字符集解码指定的字节子数组来构造一个新的 String .
6.String(byte[]bytes, int offset, int length, String charsetName)
通过使用指定的字符集解码指定的字节子数组来构造一个新的 String.
7.String(byte[] bytes, String charsetName)
通过使用指定的字符集解码指定的字节数组来构造一个新的 String.
8.String(char[] value)
分配一个新字符串,使其表示当前包含在字符数组参数中的字符序列.
9.String(char[] value, int offset, int count)
分配一个新 String,其中包含字符数组参数的子数组中的字符.
10.String(int[] codePoints, int offset, int count)
分配一个包含 Unicode 代码点数组参数的子数组中的字符的新字符串.
11.String(String original)
初始化一个新创建的 String 对象,使其表示与参数相同的字符序列;换句话说,新创建的字符串是参数字符串的副本.
12.String(StringBuffer buffer)
分配一个新字符串,其中包含当前包含在字符串缓冲区参数中的字符序列.
13.String(StringBuilder builder)
分配一个新字符串,其中包含字符串构建器参数中当前包含的字符序列.

java.lang.String 方法

java.lang.String 类有许多方法,如下所列:

成员方法

序号方法与方法说明
1.char charAt(int index)
返回值指定索引处的 char 值.
2.int codePointAt(int index)
返回指定索引处的字符(Unicode 代码点)。
3.int codePointBefore(int index)
返回指定索引之前的字符(Unicode 代码点).
4.int codePointCount(int beginIndex, int endIndex)
返回此字符串的指定文本范围内的 Unicode 代码点数量.
5.intcompareTo(String anotherString)
按字典顺序比较两个字符串.
6.intcompareToIgnoreCase(String str)
比较两个按字典顺序排列字符串,忽略大小写差异.
7.String concat(String str)
将指定字符串连接到该字符串的末尾.
8. boolean contains(CharSequence s)
当且仅当此字符串包含指定的 char 值序列时返回 true.
9.boolean contentEquals(CharSequence cs)
将此字符串与指定的 CharSequence 进行比较.
10.boolean contentEquals(StringBuffer sb)
将此字符串与指定的 StringBuffer 进行比较.
11.static String copyValueOf(char[] data)
等价于 valueOf(char[] ).
12.static String copyValueOf(char[] data, int offset, int count)
等价于 valueOf(char[], int, int).
13.booleanendsWith(String suffix)
测试此字符串是否以指定后缀结尾.
14.boolean equals(Object anObject)
将此字符串与指定对象进行比较.
15.boolean equalsIgnoreCase(String anotherString)
将此字符串与另一个字符串进行比较,忽略大小写.
16.static String format(String format, Object... args)
使用指定的格式字符串和参数返回格式化字符串.
17.static String format(Locale l, String format, Object... args)
使用指定的语言环境、格式字符串和参数返回格式化字符串.
18 .byte[] getBytes()
使用平台的默认字符集将此 String 编码为字节序列,并存储结果到一个新的字节数组.
19.byte[] getBytes(Charset charset)
使用给定的字符集将此字符串编码为字节序列,并将结果存储到新的字节数组中。
20.byte[] getBytes(String charsetName)
使用指定的字符集将此字符串编码为字节序列,并将结果存储到新的字节数组中.
21.void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin )
将此字符串中的字符复制到目标字符数组中.
22.int hashCode()
返回此字符串的哈希码.
23.int indexOf(int ch)
返回此字符串中指定字符第一次出现的索引.
24.int indexOf(int ch, int fromIndex)
返回该字符串中第一次出现的索引指定字符,从指定索引处开始搜索.
25.int indexOf(String str )
返回此字符串中指定子字符串第一次出现的索引.
26.int indexOf(String str, int fromIndex)
返回此字符串中指定子字符串第一次出现的索引,从指定索引开始.
27.String intern()
返回字符串对象的规范表示形式.
28.boolean isEmpty()
如果满足以下条件则返回 true ,且仅当 length() 为 0 时.
29.static String join(CharSequence delimiter, CharSequence... elements)
返回一个由 CharSequence 元素的副本与指定分隔符的副本连接在一起组成的新字符串.
30.static String join(CharSequence delimiter, Iterable<? extends CharSequence> elements)
返回一个由 CharSequence 元素的副本与指定分隔符的副本连接在一起组成的新字符串.
31.int lastIndexOf(int ch)
返回此字符串中最后一次出现指定字符的索引.
32.int lastIndexOf(int ch, int fromIndex)
返回索引在最后一次出现指定字符的字符串中,从指定索引处开始向后搜索.
33.int lastIndexOf(String str)
返回此字符串中最后一次出现的指定子字符串的索引.
34.int lastIndexOf(String str, int fromIndex)
返回此字符串中最后一次出现的指定子字符串的索引,搜索从指定索引开始向后.
35.int length()
返回此字符串的长度.
36.boolean matches(String regex)
判断此字符串是否与给定的正则表达式匹配.
37.int offsetByCodePoints(int index, int codePointOffset)
返回此字符串中从给定索引偏移 codePointOffset 代码点的索引.
38.boolean regionMatches(int toffset, String other, int ooffset, int len)
测试两个字符串是否一致区域相等.
39.boolean regionMatches(booleanignoreCase,inttoffset,Stringother, int ooffset, int len)
测试两个字符串区域是否相等.
40.String Replace(char oldChar, char newChar)
返回用 newChar 替换此字符串中所有出现的 oldChar 所得到的字符串.
41.String replace(CharSequence target, CharSequence replacement)
替换此字符串中与文字匹配的每个子字符串具有指定文字替换序列的目标序列.
42.String ReplaceAll(String regex, String replacement)
用给定的替换替换该字符串中与给定正则表达式匹配的每个子字符串.
43.String ReplaceFirst(String regex, String replacement)
用给定的替换替换该字符串中与给定正则表达式匹配的第一个子字符串.
44.String[] split(String regex)
分割此字符串给定正则表达式的匹配项.
45.String[] split(String regex, int limit)
围绕给定正则表达式的匹配项拆分此字符串.
46.boolean attemptsWith(String prefix)
测试此字符串是否以指定前缀开头.
47.booleanstartsWith(String prefix, int toffset)
测试此字符串中从指定索引开始的子字符串是否以指定前缀开头.
48.CharSequence subSequence(int beginIndex, int endIndex)
返回作为该序列子序列的字符序列.
49.String substring(int beginIndex )
返回一个字符串,该字符串是该字符串的子字符串.
50.String substring(int beginIndex, int endIndex)
返回作为此字符串的子字符串的字符串.
51.char[] toCharArray()
将此字符串转换为新的字符数组.
52.String toLowerCase()
使用以下规则将此字符串中的所有字符转换为小写默认区域设置.
53.String toLowerCase(Locale locale)
使用给定区域设置的规则将此字符串中的所有字符转换为小写.
54.String toString()
这个对象(已经是一个字符串!)本身被返回.
55.String toUpperCase()
使用默认语言环境的规则将此字符串中的所有字符转换为大写.
56.String toUpperCase(Locale locale)
将中的所有字符转换为大写使用给定区域设置的规则将此字符串转换为大写.
57.trim( )
返回一个字符串,其值为该字符串,删除了所有前导和尾随空格.
58.static String valueOf(boolean b)
返回布尔参数的字符串表示形式.
59.static String valueOf(char c)
返回 char 参数的字符串表示形式.
60.static String valueOf(char[] data)
返回 char 的字符串表示形式数组参数.
61.static String valueOf(char[] data, int offset, int count)
返回 char 数组参数的特定子数组的字符串表示形式.
62.static String valueOf(double d)
返回 double 参数的字符串表示形式.
63.static String valueOf(float f)
返回 float 参数的字符串表示形式.
64.static String valueOf(int i)
返回 int 参数的字符串表示形式.
65.static String valueOf(long l)
返回字符串long参数的表示形式.
66.static String valueOf(Object obj)
返回 Object 参数的字符串表示形式.

继承的方法

该类继承了以下类的方法:

  • java.lang.Object