1字符串声明和创建
boolean contains(String str)
判断大字符串中是否包含小字符串
boolean endsWith(String str)
判断字符串是否以某个指定的字符串结尾
boolean isEmpty()
判断字符串是否为空
boolean startsWith(String str)
判断字符串是否以某个指定的字符串开头
2字符串基本操作
char charAt(int index)
获取指定索引位置的字符
String concat(String str)
把字符串拼接
byte[] getBytes()
把字符串转换为字节数组
int indexOf(int ch, int fromIndex)
返回指定字符在此字符串中从指定位置后第一次出现的索引
char[] toCharArray()
把字符串转换为字符数组
String toLowerCase()
把字符串转换为小写
String toUpperCase()
把字符串转换为大写