String s="http://a0.att.hudong.com/15/37/20300415460903132947371591450.gif";
String temp[] = s.replaceAll("\\\\","/").split("/");
String fileName = "";
if(temp.length > 1){
fileName = temp[temp.length - 1];
System.out.println(fileName);
}
String temp[] = s.replaceAll("\\\\","/").split("/");
String fileName = "";
if(temp.length > 1){
fileName = temp[temp.length - 1];
System.out.println(fileName);
}