1 package com.Commonly; 2 /* 3 String 当中与转换相关的常用方法有: 4 5 public char[] toCharArray():将当前字符串拆分成为字符数组作为返回值。 6 public byte[] getBytes():获得当前字符串底层的字节数组。 7 public String replace(CharSequence oldString,CharSequence newString): 8 将所有出现的老字符串替换成为新的字符串,返回替换之后的结果新字符串。 9 备注:CharSequence意思就是说可以接受字符串类型。 10 */ 11 public class Used06 { 12 public static void main(String[] args) { 13 //转换成为字符数组 14 char[] chars = "Hello".toCharArray(); 15 System.out.println(chars[0]);//H 16 System.out.println(chars.length);//5 17 System.out.println("============"); 18 19 //转换成为字节数组 20 byte[] bytes = "abc".getBytes(); 21 for (int i = 0; i < bytes.length; i++) { 22 System.out.println(bytes[i]); 23 } 24 System.out.println("============"); 25 26 //字符串的内容替换 27 String str1 = "How do you do?"; 28 String str2 = str1.replace("o","*"); 29 System.out.println(str1);//How do you do? 30 System.out.println(str2);//H*w d* y*u d*? 31 System.out.println("============"); 32 33 String lang1 = "会不会玩呀!你大爷的!你大爷的!你大爷的!"; 34 String lang2 = lang1.replace("你大爷的","****"); 35 System.out.println(lang2);//会不会玩呀!****!****!****! 36 } 37 }