Skip to content

Instantly share code, notes, and snippets.

@kabronkline
Created September 16, 2013 14:37
Show Gist options
  • Select an option

  • Save kabronkline/6581541 to your computer and use it in GitHub Desktop.

Select an option

Save kabronkline/6581541 to your computer and use it in GitHub Desktop.
Apache Tika (version 0.8) Mime Type Detection in Java
String mimeType = "application/octet-stream";
Tika tika = new Tika();
try {
mimeType = tika.detect(file);
} catch (Exception ex) {
log.error(ex);
}
return mimeType;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment