Skip to content

Instantly share code, notes, and snippets.

@mourawaldson
mourawaldson / get_extension.java
Created April 28, 2012 21:35
Get file extension
import java.io.File;
/**
* Retorna a extensão do arquivo.
*
* @param file
* @return string Extensão
*/
public static String getExtension(String file) {
return file.substring(file.lastIndexOf(".") + 1, file.length());