Posted on 2008-07-10 17:40
追梦人 阅读(163)
评论(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;
}
}