The two key classes for you are MediaTypeRegistry and MimeTypes. Using these, you can do mime type magic based detection, and get information on the mime types and their relationships.
TikaConfig config = TikaConfig.getDefault();
InputStream stream = new FileInputStream(file);
MediaType mediaType = config.getMimeRepository.detect(stream, new Metadata());
MimeType mimeType = config.getMimeRepository.forName(mediaType.toString());
String extension = mimeType.getExtension();
You might also want to look at DefaultDetector in Tika's svn, it'll handle container aware detection too.