一:字符串相关的类

(1)String类及常用方法

  1. String类:代表字符串。java程序中的所有字符串字面值(如”abc”)都作为此类的实例实现。
  2. String是一个final类,代表不可变的字符序列。
  3. 字符串是常量,用双引号引起来表示。他们的值在创建之后不能更改。
  4. String对象的字符内容是存储在一个字符数组value[]中。
  5. String实现了Serializable接口(表示字符串是支持序列化的)、实现了Comparable接口(表示String可以比较大小)。
    1. /**
    2. * 注意:
    3. * 1.通过字面量的方式(区别于new)给一个字符串赋值,此时的字符串值声明在字符串常量池中。
    4. * 2.字符串常量池中是不会存储相同内容的字符串的。
    5. * 3.当对字符串重新赋值时,需要重写指定内存区域赋值,不能使用原有的value进行赋值。
    6. * 4.当对现有的字符串进行连接操作时,也需要重新指定内存区域赋值,不能使用原有的value进行赋值。
    7. */
    8. public class StringTest1 {
    9. public static void main(String[] args) {
    10. String s1 = "aaa";//字面量的定义方式
    11. String s2 = "aaa";
    12. System.out.println(s1==s2);//返回结果:true,二者指向相同的地址
    13. String s3 = new String("bbb");
    14. String s4 = new String("bbb");
    15. System.out.println(s3==s4);//返回结果:false
    16. }
    17. }
    1. String str="abc";与String str2=new String ("abc")的区别?
    2. 字符串常量存储在方法区中的字符串常量池,目的是共享。
    3. 字符串非常量对象存储在堆中。
    4. 面试题:String s=new String("abc");方式创建对象,在内存中创建了几个对象?
    5. 两个,一个是堆空间的new结构,另一个是char[]对应的常量池中的数据:“abc
    1. /**
    2. * 案例:String不同拼接操作的对比。
    3. * 结论:
    4. * 1.常量与常量的拼接结果在常量池,且常量池中不会存在相同内容的常量。
    5. * 2.只要其中有一个变量(变量名)参与,结果就在堆中。
    6. * 3.如果拼接的结果调用intern()方法,返回值就在常量池中
    7. */
    8. public class StringTest1 {
    9. public static void main(String[] args) {
    10. String s1 = "aaa";//字面量的定义方式
    11. String s2 = "bbb";
    12. String s3 = "aaabbb";
    13. String s4 = "aaa"+"bbb";
    14. String s5 = s1+"bbb";
    15. String s6 = "aaa"+s2;
    16. String s7 = s1+s2;
    17. System.out.println(s3 == s4);//true
    18. System.out.println(s3 == s5);//false
    19. System.out.println(s3 == s6);//false
    20. System.out.println(s3 == s7);//false
    21. System.out.println(s5 == s6);//false
    22. System.out.println(s5 == s7);//false
    23. String s8 = s5.intern();//返回值得到的s8使用的是常量池中已经存在的
    24. System.out.println(s3 == s8);//true
    25. }
    26. }
    常用方法1:
    1. int length():返回字符串的长度: return value.length.
    2. char charAt(int index):返回某索引处的字符:return value[index].
    3. boolean isEmpty():判断是否是空字符串: return value.length=0.
    4. String toLowerCase():使用默认语言环境,将String中的所有字符转换为小写.
    5. String toUpperCase():使用默认语言环境,将String中的所有字符转换为大写.
    6. String trim():返回字符串的副本,忽略前导空自和尾部空白.
    7. boolean equals(Object obj):比较字符串的内容是否相同.
    8. boolean equalsIgnoreCase(String anotherString):与equals方法类似,忽略大小写.
    9. String concat(String str):将指定字符串连接到此字符串的结尾。等价于用“+” .
    10. int compareTo(String anotherString):比较两个字符串的大小
    11. String substring(int beginlndex):返回一个新的字符串,它是此字符串的从beginindex开始截取到最后的一个子字符串。
    12. String substring(int beginlndexint endlndex):返回一个新字符串,它是此字符串从beginlndex开始截取到endlndex(不包含)的一个子字符串。
    1. //案例一:
    2. public static void test1(){
    3. String s1 = "HelloWord";
    4. System.out.println(s1.length());//9
    5. System.out.println(s1.charAt(0));//H
    6. System.out.println(s1.isEmpty());//false
    7. System.out.println(s1.toLowerCase());//helloword
    8. System.out.println(s1.toUpperCase());//HELLOWORD
    9. String s2 = " Hello World ";
    10. System.out.println("---"+s2.trim()+"---");//---Hello World---
    11. }
    12. public static void test2(){
    13. String s1 = "Hello World";
    14. String s2 = "hello world";
    15. String s3 = new String("Hello World");
    16. String s4 = new String("hello world");
    17. System.out.println(s1.equals(s2));//false
    18. System.out.println(s1.equalsIgnoreCase(s2));//true
    19. System.out.println(s3.equals(s4));//flase
    20. System.out.println(s3.equalsIgnoreCase(s4));//true
    21. System.out.println(s1.compareTo(s2));//-32
    22. System.out.println(s1.substring(1));//ello World
    23. System.out.println(s1.substring(1,8));//ello Wo
    24. }
    常用方法2:
    1. boolean endsWith(String suffix):测试此字符串是否以指定的后缀结束。
    2. boolean startsWith(String prefix):测试此字符串是否以指定的前缀开始。
    3. boolean startsWith(String prefix,int toffset):测试此字符串从指定索引开始的子字符串是否以指定前缀开始.
    4. boolean contains(CharSequence s):当且仅当此字符串包含指定的char值序列时,返回true
    5. int indexOf(String str):返回指定子字符串在此字符串中第一次出现处的索引.
    6. int indexOf(String str,int fromIndex):返回指定子字符串在此字符串中第一次出现处的索引,从指定的索引开始.
    7. int lastIndexOf(String str):返回指定子字符串在此字符串中最右边出现处的索引.
    8. int lastIndexOf(String str,int fromIndex):返回指定子字符串在此字符串中最后一次出现处的索引,从指定的索引开始反向搜索。
    9. 注: indexOf()和lastIndexOf()方法如果未找到都是返回-1.
    1. //案例二:
    2. public static void test3(){
    3. String s1 = "hgkwylb";
    4. System.out.println(s1.endsWith("wylb"));//true
    5. System.out.println(s1.endsWith("gstx"));//false
    6. System.out.println(s1.startsWith("hgk"));//true
    7. System.out.println(s1.startsWith("kw",2));//true
    8. String s2 = "wy";
    9. System.out.println(s1.contains(s2));//true
    10. String s3 = "hellorworld";
    11. System.out.println(s3.indexOf("or"));//4
    12. System.out.println(s3.indexOf("or",5));//7
    13. System.out.println(s3.lastIndexOf("or"));//7
    14. System.out.println(s3.lastIndexOf("or",4));//4
    15. /**
    16. * 什么情况下,indexOf(str)和lastIndexOf(str)返回值相同。
    17. * 情况一:存在唯一的一个str.
    18. * 情况二:不存在str.
    19. */
    20. }
    常用方法3:
    1. 替换:
    2. String replace(char oldCharchar newChar):返回一个新的字符串,它是通过用newChar替换此字符串中出现的所有oldChar得到的(替换char).
    3. String replace(CharSequence targetCharSequence replacement):使用指定的字面值替换序列替换此字符串所有匹配字面值目标序列的子字符串(替换字符串)。
    4. String replaceAll(String regexString replacement):使用给定的replacement替换此字符串所有匹配给定的正则表达式的子字符串。
    5. String replaceFirst(String regexString replacement):使用给定的replacement替换此字符串匹配给定的正则表达式的第一个子字符串。
    6. 匹配:
    7. boolean matches(String regex):告知此字符串是否匹配给定的正则表达式.
    8. 切片:
    9. String[] split(String regex):根据给定正则表达式的匹配拆分此字符串。
    10. String[] split(String regexint limit):根据匹配给定的正则表达式来拆分此字符串,最多不超过limit个,如果超过了,剩下的全部都放到最后一个元素中。
    1. //案例三:
    2. public static void test4(){
    3. String s1 = "不能说的秘密,不能说的秘密";
    4. System.out.println(s1.replace("的","de"));//不能说de秘密,不能说de秘密
    5. System.out.println(s1.replace("秘密","mimi"));//不能说的mimi,不能说的mimi
    6. }
    String与基本数据类型转换:
    1. public class StringTest1 {
    2. public static void main(String[] args) {
    3. /**
    4. * 1.字符串--->基本数据类型、包装类
    5. * Integer包装类的public static int parseInt(String s);
    6. * 可以将由"数字"组成的字符串转换为整型。
    7. * 类似的,使用java.lang包中的Byte,Short,Long,Float,Double类调相应的类方法可以将由"数字"字符组成的字符串,转化为相应的基本类型。
    8. */
    9. String s1 = "123";
    10. int i = Integer.parseInt(s1);
    11. System.out.println(i);
    12. String s2 = "false";
    13. boolean b = Boolean.parseBoolean(s2);
    14. System.out.println(b);
    15. /**
    16. * 2.基本数据类型、包装类--->字符串
    17. * 调用String类的public String valueOf(int t)可将int型转换成字符串。
    18. * 相应的valueOf(byte b),valueOf(long l),valueOf(float f),valueOf(double d),valueOf(boolean b)可由参数的相应类型到字符串的转换。
    19. */
    20. int a = 123;
    21. String s = String.valueOf(a);
    22. System.out.println(s);
    23. Integer integer = new Integer(123);
    24. String s3 = String.valueOf(integer);
    25. System.out.println(s3);
    26. }
    27. }
    String与char[]之间的转换:
    1. public static void test2(){
    2. /**
    3. * 1.字符数组--->字符串
    4. * String类的构造器:String(char[])和String(char[],int offset,int length)分别用字符串组中的全部字符和部分字符创建字符串对象。
    5. * 2.字符串--->字符数组
    6. * public char[] toCharArray():将字符串中的全部字符存放在一个字符数组中的方法。
    7. * public void getChars(int srcBegin,int srcEnd,char[] dst,int dstBegin):提供了将指定索引范围内的字符串放到数组中的方法。
    8. */
    9. //1.字符串--->字符数组
    10. String s1 = "abc123";
    11. char[] chars = s1.toCharArray();
    12. System.out.println(chars[3]);//1
    13. //2.字符数组--->字符串
    14. char[] chars1 = {'h', 'g', 'k', 'h', 's'};
    15. String s = new String(chars1);
    16. System.out.println(s);//hgkhs
    17. }
    String与byte[]之间的转换:
    1. public static void test3() throws UnsupportedEncodingException {
    2. /**
    3. * 1.字符串--->字节数组
    4. * public byte[] getBytes():使用平台的默认字符集将次String编码为byte序列,并将结果存储到一个新的byte数组中。
    5. * public byte[] getBytes(String charsetName):使用指定的字符集将此String编码到byte序列,并将结果存储到新的byte数组。
    6. * 2.字节数组--->字符串
    7. * String(byte[]):通过使用平台的默认字符集解码指定的byte数组,构造一个新的String。
    8. * String(byte[],int offset,int length):用指定的字节数组的一部分,即从数组起始位置offest开始取length个字节构造一个字符串对象。
    9. */
    10. //1.字符串--->字节数组(编码)
    11. String s1 = "abc中国";
    12. byte[] bytes = s1.getBytes();//使用默认的字符集,进行转换
    13. System.out.println(Arrays.toString(bytes));//[97, 98, 99, -28, -72, -83, -27, -101, -67]
    14. byte[] gbks = s1.getBytes("gbk");//使用gbk字符集进行编码
    15. System.out.println(Arrays.toString(gbks));//[97, 98, 99, -42, -48, -71, -6]
    16. //2.字节数组--->字符串(解码)
    17. String s = new String(bytes);
    18. System.out.println(s);//abc中国
    19. String gbk = new String(bytes, "gbk");
    20. System.out.println(gbk);//abc涓浗
    21. }

    (2)StringBuffer、StringBuilder

    1. /**
    2. * String、StringBuffer、StringBuilder的异同
    3. * String:不可变的字符序列;底层使用char[]存储。效率最差。
    4. * StringBuffer:可变的字符序列;线程安全的、效率低;底层使用char[]存储。
    5. * StringBuilder:可变的字符序列;JDK 5.0新增,线程不安全的、效率高;底层使用char[]存储。
    6. */
    7. /**
    8. * StringBuffer、StringBuilder的使用
    9. * 1.源码分析:
    10. * String str=new String();//char[] value=new char[0];
    11. * String str1=new String("abc");//char[] value=new char['a','b','c'];
    12. *
    13. * StringBuffer sb1=new StringBuffer();//char[] value=new char[16];底层创建了一个长度是16的char[]数组
    14. * sb1.append('a');//value[0]='a';
    15. *
    16. * StringBuffer sb2=new StringBuffer("abc");//char[] value=new char["abc".length+16];
    17. * 问题1:System.out.println(sb2.length());//3
    18. * 问题2:扩容问题:如果要添加的数据底层数组盛不下了,那么就扩容底层数组。
    19. * 默认情况下,扩容为原来容量的2倍+2,同时将原有数组中的元素复制到新的数组中。
    20. * 指定意义:开发当中,建议大家使用:StringBuffer(int capacity)或StringBuilder(int capacity);//创建一个指定长度的StringBuffer,避免频繁的扩容问题,提高效率。
    21. */
    22. public static void test1(){
    23. StringBuffer sb1 = new StringBuffer("abc");
    24. sb1.setCharAt(0,'m');
    25. System.out.println(sb1);//mbc
    26. sb1.append("abc");
    27. System.out.println(sb1);//mbcabc
    28. }
    StringBuffer常用方法:(StringBuilder方法改一下返回值即可)
    1. /*
    2. StringBuffer append(***):提供了很多append()方法,用于进行字符串拼接。
    3. StringBuffer delete(int start,int end):删除指定位置的内容。
    4. StringBuffer replace(int start,int end,String str):把[start,end]位置替换为str.
    5. StringBuffer insert(int offset,***):在指定位置插入***。
    6. StringBuffer reverse():把当前字符序列逆转。
    7. 当append和insert时,如果原来value数组长度不够,可扩容。
    8. public int indexOf(String str);
    9. public String substring(int start,int end);
    10. public int length();
    11. public char charAt(int n);
    12. public void setCharAt(int n,char ch);
    13. */
    14. public static void test2(){
    15. //重点:增、删、改、查、插、长度、遍历
    16. StringBuffer sb1 = new StringBuffer();
    17. System.out.println(sb1.append("abcdef"));//abcdef
    18. System.out.println(sb1.deleteCharAt(1));//acdef
    19. System.out.println(sb1.replace(2, 4, "周杰伦"));//ac周杰伦f
    20. System.out.println(sb1.insert(2,"明明就"));//ac明明就周杰伦f
    21. System.out.println(sb1.reverse());//f伦杰周就明明ca
    22. }