2016-02-08 109 views
0
fi.write(file); 
out.println("filepath"+file.getAbsolutePath()); 
System.out.println("above is actual paht and bellow are replace path"); 
String proPic = file.getAbsolutePath(); 
HPIUGS.setImageName(proPic); 
System.out.println(HPIUGS.getImageName()); 
out.println("Uploaded Filename: " + fileName + "<br>"); 
out.println(filePath); 

輸出:如何更換文件路徑,在該文件路徑刪除一些路徑,並同時更換到/

C:\Users\Peado Inffitech 5\Desktop\eclipse\jsp\UsersPanel\upload\uploadsPenguins.jpg 

,我改變得到輸出:

/jsp/UsersPanel/upload/uploadsPenguins.jpg 
+0

'replace(「\\」,「/」)'。 – Satya

+0

爲什麼要從文件路徑中刪除一些文件? – Satya

+0

,但先生刪除部分路徑是C:\ Users \ Peado Inffitech 5 \ Desktop \ eclipse \如何更改 –

回答

0
String gotString = "C:\\Users\\Peado Inffitech 5\\Desktop\\eclipse\\jsp\\UsersPanel\\upload\\uploadsPenguins.jpg"; 


String newString = gotString.replace("C:\\Users\\Peado Inffitech 5\\Desktop\\eclipse", "").replace("\\", "/"); 

System.out.print(newString); 

如果我沒有錯過你的觀點,這應該對你有用。

+0

非常感謝Sir –

+0

任何接受後都不接受答案的理由? – Helios