日期:2014-05-20 浏览次数:20670 次
public static void main(String[] args){
String s = "/aa/rver/ta/client";
System.out.println(getStrByStr(s));
}
public static String getStrByStr(String str){
//得到最后一个斜杠的位置
int l = str.lastIndexOf("/");
//得到原s字符串中倒数第二个斜杠的位置
int l2 = (str.substring(0,l)).lastIndexOf("/");
//返回处理完毕的字符串
return str.substring(l2+1,str.length());
}