在Java中處理一些路徑相關的問題的時候,如要取出ie浏覽器上傳文件的文件名,由於ie會把整個文件路徑都作為文件名上傳,需要用java.lang.String中的replaceAll或者split來處理,下面看看使用方法
上傳文件路徑為: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]; }