Posted on 2008-07-10 17:40
追夢人 閱讀(170)
評論(0) 編輯 收藏 所屬分類:
Other
String path = request.getRealPath("");
String[] imgtype = {".jpg",".jpeg",".bmp",".png",".gif"};
for(String type : imgtype)
{
File f=new File(path,"images/"+userinfo.getId()+type);
//檢查是否存在
if(f.exists())
{
f.delete();//刪除文件
break;
}
}