package cn.itcast;
public class StringDemo3 {
public static void main(String[] args) {
//String类的转换功能
String s = "hellOworld";
String t = "good";
//把字符串转为字节数组byte[] getBytes()
byte[] b=s.getBytes();
for(int x=0;x<b.length;x++)
{
System.out.print(b[x]);
System.out.print("\t");
}
System.out.println();
//把字符串转为字符型数组 char [] tocharArray()
char[] chs = s.toCharArray();
for(int x=0;x<b.length;x++)
{
System.out.print(chs[x]);
System.out.print("\t");
}
System.out.println();
//把基本类型(int)的一个数据转为字符串类型static String valueOf(int i)
System.out.println(s.valueOf(100));
//把字符数组转变为字符串 staticString valueOf(char[] chs)
System.out.println(s.toCharArray());
//把字符串全部小写String toLowerCase()
System.out.println(s.toLowerCase());
//把字符串全部大写String toUpperCase()
System.out.println(s.toUpperCase());
//把两个字符串拼接 String concat(String str)
System.out.println(s.concat(t));
//
}
}
|
|