6.1 Sting类
String类适用于描述字符串事物。
那么它就提供了多个方法对字符串进行操作。
常见的操作有哪些?
"abcd"
6.1.1.获取。
1.1 字符串中的包含的字符数,也就是字符串的长度。
intlength():获取长度。
1.2 根据位置获取位置上某个字符。
charcharAt(int index):
1.3 根据字符获取该字符在字符串中位置。
intindexOf(int ch):返回的是ch在字符串中第一次出现的位置。
intindexOf(int ch, int fromIndex) :从fromIndex指定位置开始,获取ch在字符串中出现的位置。
intindexOf(String str):返回的是str在字符串中第一次出现的位置。
intindexOf(String str, int fromIndex) :从fromIndex指定位置开始,获取str在字符串中出现的位置。
intlastIndexOf(int ch) :
6.1.2.判断。
2.1 字符串中是否包含某一个子串
booleancontains(str):
特殊之处:indexOf(str):可以索引str第一次出现位置,如果返回-1.表示该str不在字符串中存在。
所以,也可以用于对指定判断是否包含。
if(str.indexOf("aa")!=-1)
而且该方法即可以判断,有可以获取出现的位置。
2.2 字符中是否有内容。
booleanisEmpty(): 原理就是判断长度是否为0.
2.3 字符串是否是以指定内容开头。
booleanstartsWith(str);
2.4 字符串是否是以指定内容结尾。
booleanendsWith(str);
2.5 判断字符串内容是否相同。复写了Object类中的equals方法。
booleanequals(str);
2.6 判断内容是否相同,并忽略大小写。
booleanequalsIgnoreCase();
6.1.3.转换。
3.1 将字符数组转成字符串。
构造函数:String(char[])
String(char[],offset,count):将字符数组中的一部分转成字符串。
静态方法:
staticString copyValueOf(char[]);
staticString copyValueOf(char[] data, int offset, int count)
staticString valueOf(char[]):
3.2 将字符串转成字符数组。**
char[]toCharArray():
3.3 将字节数组转成字符串。
String(byte[])
String(byte[],offset,count):将字节数组中的一部分转成字符串。
3.4 将字符串转成字节数组。
byte[] getBytes():
3.5 将基本数据类型转成字符串。
staticString valueOf(int)
staticString valueOf(double)
//3+"";//String.valueOf(3);
特殊:字符串和字节数组在转换过程中,是可以指定编码表的。
6.1.4.替换
Stringreplace(oldchar,newchar);
6.1.5.切割
String[]split(regex);
6.1.6.子串。获取字符串中的一部分
Stringsubstring(begin);
Stringsubstring(begin,end);
6.1.7.转换,去除空格,比较
7.1将字符串转成大写或则小写。
String toUpperCase();
String toLowerCase();
7.2 将字符串两端的多个空格去除。
Stringtrim();
7.3 对两个字符串进行自然顺序的比较。
intcompareTo(string);
练习一:String类常见操作
- class StringMethodDemo
- {
-
- public static void method_7()
- {
- String s = " Hello Java ";
- sop(s.toLowerCase());
- sop(s.toUpperCase());
- sop(s.trim());
-
- String s1 = "a1c";
- String s2 = "aaa";
-
- sop(s1.compareTo(s2));
- }
- public static void method_sub()
- {
- String s = "abcdef";
-
- sop(s.substring(2));
- sop(s.substring(2,4));
- }
-
- public static void method_split()
- {
- String s = "zhagnsa,lisi,wangwu";
-
- String[] arr = s.split(",");
-
- for(intx = 0; x<arr.length; x++)
- {
- sop(arr[x]);
- }
- }
-
- public static void method_replace()
- {
- String s = "hello java";
-
-
-
-
- String s1 = s.replace("java","world");
- sop("s="+s);
- sop("s1="+s1);
- }
-
- public static void method_trans()
- {
- char[] arr = {'a','b','c','d','e','f'};
-
- String s= new String(arr,1,3);
-
- sop("s="+s);
-
- String s1 = "zxcvbnm";
-
- char[] chs = s1.toCharArray();
-
- for(intx=0; x<chs.length; x++)
- {
- sop("ch="+chs[x]);
- }
- }
- public static void method_is()
- {
- String str = "ArrayDemo.java";
-
-
- sop(str.startsWith("Array"));
-
- sop(str.endsWith(".java"));
-
- sop(str.contains(".java"));
-
- }
-
-
- public static void method_get()
- {
- String str = "abcdeakpf";
-
-
- sop(str.length());
-
-
- sop(str.charAt(4));
-
-
-
- sop(str.indexOf('m',3));
-
-
- sop(str.lastIndexOf("a"));
-
- }
- public static void main(String[] args)
- {
- method_7();
-
-
-
-
-
-
-
-
-
-
-
-
- }
-
- public static void sop(Object obj)
- {
- System.out.println(obj);
- }
- }
练习二:灵活运用String的常见操作
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- class StringTest
- {
-
- public static void sop(String str)
- {
- System.out.println(str);
- }
- public static void main(String[] args)
- {
- String s = " ab cd ";
-
- sop("("+s+")");
-
-
-
- sop("("+reverseString(s)+")");
-
- }
-
-
-
-
-
-
-
-
-
-
- public static String reverseString(String s,int start,int end)
- {
-
- char[] chs = s.toCharArray();
-
-
- reverse(chs,start,end);
-
-
- return new String(chs);
- }
- public static String reverseString(String s)
- {
- return reverseString(s,0,s.length());
-
- }
-
- private static void reverse(char[] arr,int x,int y)
- {
- for(int start=x,end=y-1; start<end ; start++,end--)
- {
- swap(arr,start,end);
- }
- }
- private static void swap(char[] arr,int x,int y)
- {
- char temp = arr[x];
- arr[x]= arr[y];
- arr[y]= temp;
- }
-
-
- public static String myTrim(String str)
- {
- int start = 0,end = str.length()-1;
-
- while(start<=end&& str.charAt(start)==' ')
- start++;
-
- while(start<=end&& str.charAt(end)==' ')
- end--;
-
- return str.substring(start,end+1);
- }
- }
练习三:获取一个字符串在另一个字符串中出现的次数
-
-
-
-
-
-
-
-
-
-
-
-
- class StringTest2
- {
-
-
-
-
- public static int getSubCount(String str,String key)
- {
- int count = 0;
- int index = 0;
-
- while((index=str.indexOf(key))!=-1)
- {
- sop("str="+str);
- str= str.substring(index+key.length());
-
- count++;
- }
- return count;
- }
-
-
-
-
- public static int getSubCount_2(String str,String key)
- {
- int count = 0;
- int index = 0;
-
- while((index=str.indexOf(key,index))!=-1)
- {
- sop("index="+index);
- index= index + key.length();
-
- count++;
- }
- return count;
- }
-
- public static void main(String[] args)
- {
- String str = "kkabkkcdkkefkks";
-
-
-
- sop("count="+getSubCount_2(str,"kk"));
- }
-
- public static void sop(String str)
- {
- System.out.println(str);
- }
- }
练习四:获取两个字符串中最大相同子串。
-
-
-
-
-
-
-
-
-
- class StringTest3
- {
- public static String getMaxSubString(String s1,String s2)
- {
-
- String max = "",min = "";
-
- max= (s1.length()>s2.length())?s1: s2;
-
- min= (max==s1)?s2: s1;
-
-
- for(int x=0; x<min.length(); x++)
- {
- for(int y=0,z=min.length()-x; z!=min.length()+1; y++,z++)
- {
- String temp = min.substring(y,z);
-
- sop(temp);
- if(max.contains(temp))
- return temp;
- }
- }
- return "";
- }
-
-
- public static void main(String[] args)
- {
- String s1 = "ab";
- String s2 = "cvhellobnm";
- sop(getMaxSubString(s2,s1));
- }
-
- public static void sop(String str)
- {
- System.out.println(str);
- }
- }
6.1.8 StringBuffer是字符串缓冲区
StringBuffer是一个容器。
特点:
1,长度是可变化的。
2,可以字节操作多个数据类型。
3,最终会通过toString方法变成字符串。
C create U update R read D delete
1,存储。
StringBufferappend():将指定数据作为参数添加到已有数据结尾处。
StringBufferinsert(index,数据):可以将数据插入到指定index位置。
2,删除。
StringBufferdelete(start,end):删除缓冲区中的数据,包含start,不包含end。
StringBufferdeleteCharAt(index):删除指定位置的字符。
3,获取。
charcharAt(int index)
intindexOf(String str)
intlastIndexOf(String str)
intlength()
Stringsubstring(int start, int end)
4,修改。
StringBufferreplace(start,end,string);
voidsetCharAt(int index, char ch) ;
5,反转。
StringBufferreverse();
6,
将缓冲区中指定数据存储到指定字符数组中。
voidgetChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
JDK1.5 版本之后出现了StringBuilder.
StringBuffer是线程同步。
StringBuilder是线程不同步。
以后开发,建议使用StringBuilder
升级三个因素:
1,提高效率。
2,简化书写。
3,提高安全性。
练习五:StringBuffer操作的练习
- class Demo
- {
- }
-
- class StringBufferDemo
- {
- public static void main(String[] args)
- {
-
-
- StringBuilder sb = new StringBuilder("abcdef");
-
- char[] chs = new char[6];
-
- sb.getChars(1,4,chs,1);
-
- for(int x=0; x<chs.length; x++)
- {
- sop("chs["+x+"]="+chs[x]+";");
- }
-
- draw(3,6);
- draw(8,9);
-
-
-
-
- }
- public static void method_update()
- {
- StringBuffer sb = newStringBuffer("abcde");
-
-
- sb.setCharAt(2,'k');
-
- sop(sb.toString());
-
- }
- public static void method_del()
- {
- StringBuffer sb = newStringBuffer("abcde");
-
-
-
-
-
-
- sb.deleteCharAt(2);
-
- sop(sb.toString());
- }
-
- public static void method_add()
- {
- StringBuffer sb = new StringBuffer();
-
-
-
-
-
- sb.insert(1,"qq");
- sop(sb.toString());
-
-
-
- }
-
-
- public static void sop(String str)
- {
- System.out.println(str);
- }
-
- public static void draw(int row,int col)
- {
- StringBuilder sb = new StringBuilder();
- for(int x=0; x<row; x++)
- {
- for(int y=0; y<col; y++)
- {
- sb.append("*");
- }
- sb.append("\r\n");
- }
-
- sop(sb.toString());
- }
-
- }
6.1.9基本数据类型对象包装类。
byte Byte
short short
int Integer
long Long
boolean Boolean
float Float
double Double
char Character
基本数据类型对象包装类的最常见作用,
就是用于基本数据类型和字符串类型之间做转换
基本数据类型转成字符串。
基本数据类型+""
基本数据类型.toString(基本数据类型值);
如:Integer.toString(34);//将34整数变成"34";
字符串转成基本数据类型。
xxxa = Xxx.parseXxx(String);
inta = Integer.parseInt("123");
doubleb = Double.parseDouble("12.23");
booleanb = Boolean.parseBoolean("true");
Integeri = new Integer("123");
intnum = i.intValue();
十进制转成其他进制。
toBinaryString();
toHexString();
toOctalString();
其他进制转成十进制。
parseInt(string,radix);
练习六:基本数据类型操作
- class IntegerDemo
- {
- public static void sop(String str)
- {
- System.out.println(str);
- }
-
- public static void main(String[] args)
- {
-
-
-
-
-
-
- int num = Integer.parseInt("123");
-
-
-
-
-
-
-
- int x = Integer.parseInt("3c",16);
-
- sop("x="+x);
-
-
- }
- }
6.1.10JDK1.5版本以后出现的新特性,基本数据类型自动装箱、拆箱
练习六:基本数据类型的自动拆箱,装箱
- class IntegerDemo1
- {
- public static void main(String[] args)
- {
-
-
-
- Integer x = 4;
-
- x= x + 2;
-
-
-
- Integer m = 128;
- Integer n = 128;
-
- sop("m==n:"+(m==n));
-
- Integer a = 127;
- Integer b = 127;
-
- sop("a==b:"+(a==b));
-
- }
-
- public static void method()
- {
- Integer x = new Integer("123");
-
- Integer y = new Integer(123);
-
- sop("x==y:"+(x==y));
- sop("x.equals(y):"+x.equals(y));
- }
-
- public static void sop(String str)
- {
- System.out.println(str);
- }
-
- }