Skip to content

Instantly share code, notes, and snippets.

@y0zg
Created March 16, 2016 19:46
Show Gist options
  • Save y0zg/193e9cb1092d93265b1f to your computer and use it in GitHub Desktop.
Save y0zg/193e9cb1092d93265b1f to your computer and use it in GitHub Desktop.
extension
public static String getFileExtension(String path) {
int lastIndex = path.lastIndexOf(".");
if (lastIndex != -1) {
return path.substring(lastIndex + 1);
} else {
return "";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment