* @param byte[] dataFile
* @return
*/
public static String getMimeType(byte[] dataFile) {
String mimeType = null;
MagicMatch magic;
try {
magic = Magic.getMagicMatch(dataFile);
mimeType = magic.getMimeType();
} catch (MagicParseException e) {
throw new MimeTypeException(
"Ocorreu um erro ao tentar obter o tipo do arquivo", e);
} catch (MagicMatchNotFoundException e) {
throw new MimeTypeException(