Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to read file headers using java, I want to get file type(image, audio whatever). I have tried many examples but nothing seems to work. I tried preon and no luck, can some one tell me how to read file headers using preon or some other Java apis thanks...

share|improve this question
1  
See this duplicate to aid achieve that. stackoverflow.com/questions/8191720/… – Bitmap May 8 '12 at 9:39
Check also this one: stackoverflow.com/questions/51438/… – Guillaume Polet May 8 '12 at 10:16
Define "nothing seems to work" and "no luck". Specifically, what results are you expecting and what results are you actually getting? and with what code? against what files? – EJP May 8 '12 at 11:06

2 Answers

 File f = new File(filepath);
 System.out.println("Mime Type of " + f.getName() + " is " +  
 new MimetypesFileTypeMap().getContentType(f));
share|improve this answer
it only works if file has an extension, I am trying to read unknown file types (like temp, dump files without any .extension) – Eric May 8 '12 at 10:12

Use mime-util's MagicMimeMimeDetector:

detector.getMimeTypes(file)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.