1.截取路径最后一个字符串
/**
* 截取链接最后一个字符串
* @author ZLQ
*
*/
public class StringTest {
public static void main(String[] args) {
String url = "http://zhidao.baidu.com/question/147458024.html";
//取得最后一个/的下标
int index = url.lastIndexOf("/");
//将字符串转为字符数组
char[] ch = url.toCharArray();
//根据 copyValueOf(char[] data, int offset, int count) 取得最后一个字符串
String lastString = String.copyValueOf(ch, index + 1, ch.length - index - 1);
System.out.println(lastString);
}
}
2.截取链接最后一个字符串
/**
* 截取链接最后一个字符串
* @author ZLQ
*
*/
public class StringTes