filePath.substring(filePath.lastIndexOf(".")); // Extension with dot .jpg, .png
or
filePath.substring(filePath.lastIndexOf(".") + 1); // Without dot jpg, png
filePath.substring(filePath.lastIndexOf(".")); // Extension with dot .jpg, .png
or
filePath.substring(filePath.lastIndexOf(".") + 1); // Without dot jpg, png