一、Java String的常用方法:
split()方法;
equals()方法;
substring()方法;
示例方法:
- private boolean isSameSelCode(Fbillconfirm fbillconfirm, HashMap outputParam){
- String strExpenseID=new String();
- Fbillconfirmdetail[] fbillconfirmdetail=fbillconfirm.getFbillconfirmdetail();
- if(fbillconfirmdetail!=null&&fbillconfirmdetail.length>0){
- for(int i=0;i<fbillconfirmdetail.length;i++){
- //如果前台传的参数不为Delete状态,即需要新增或修改的数据,需要校验费用
- if(!Constants.DELETED.equals(fbillconfirmdetail[i].getRowstate())){
- strExpenseID+=fbillconfirmdetail[i].getFbcd_expense_id()+";";
- }
- }
- }
- //处理字符串数组传参
- String[] strExpenseIDs=strExpenseID.split(";");
- if(strExpenseIDs.length>0){
- return EpenseSigned.checkSelCode(strExpenseIDs);
- }else{
- return true;
- }
- }
二、Java string的注意事项:
1.String str="";--把句柄指向一个str对象(在栈中,入池),String str=new String();--新建一个对象(在队中,不入池),两者是不一样的。
2.String[] 数组的初始化问题:String[] str数组的初始化需要定义长度,否则不能直接赋值,如str[i]="123"就会报错。初始化的需要预定义长度。否则就是直接指向一个已存在数组。
3.strA.eqauls(strB)--strA不可以为null,否则为空指针,strA==strB:比较的是两个引用的值(即指针的值),strA==strB:比较的是两个对象的值。
4.split方法:
- public static void splitString() {
- // 定义一个字符串变量
- String strUser = "Zhangshan,Lisi,Wangma";
- // 切割
- String[] strsUser = strUser.split(",");
- for (int i = 0; i < strsUser.length; i++) {
- System.out.println(strsUser[i]);
- }
- }
打印结果:
Zhangshan
Lisi
Wangma
【编辑推荐】