public static String getPicNameFromPath(String picturePath){String temp[] = picturePath.replaceAll("\\\\","/").split("/");String fileName = "";if(temp.length > 1){fileName = temp[temp.length - 1];}return fileName;}
public static String getPicNameFromPath(String picturePath){String temp[] = picturePath.replaceAll("\\\\","/").split("/");String fileName = "";if(temp.length > 1){fileName = temp[temp.length - 1];}return fileName;}