上传文件路径为:C:/Documents and Settings/collin/My Documents/111-lazyloading.gif,欲取出文件名:111-lazyloading.gif。可以
String temp[] = name.split("////");
if (temp.length > 1) {
name = temp[temp.length - 1];
}
regex为////,因为在java中//表示一个/,而regex中//也表示/,所以当////解析成regex的时候为//。
由于unix中file.separator为斜杠"/",下面这段代码可以处理windows和unix下的所有情况:
String temp[] = name.replaceAll("////","/").split("/");
if (temp.length > 1) {
name = temp[temp.length - 1];
}