Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to get file type extension from byte[] (Blob). I'm reading files from DB to byte[] but i don't know how to automatically detect file extension.

Blob blob = rs.getBlob(1);
byte[] bdata = blob.getBytes(1, (int) blob.length());
share|improve this question

4 Answers

up vote 5 down vote accepted

You mean you want to get the extension of the file for which the blob store the content? So if the BLOB stores the content of a jpeg-file, you want "jpg"?

That's not possible!

If you store a file in a blob, and need to remember the extension, you typically keep a separate column, like a VARCHAR for the extension. (I actually do this in an application I currently work on, and I also have a column for the mime type.)

share|improve this answer
1  
I'd use more than 3 characters. .html, .java and .jpeg are just 3 quite common file extensions with more than 3 characters. – Joachim Sauer Aug 19 '11 at 10:47
Jup.. realized that when I wrote it... removed that constant... – aioobe Aug 19 '11 at 10:48
Dowenvoter, care to leave a comment? – aioobe Aug 19 '11 at 20:20

It's not perfect, but the Java Mime Magic library may be able to infer the file extension:

Magic.getMagicMatch(bdata).getExtension();
share|improve this answer

Try with ByteArrayDataSource (http://download.oracle.com/javaee/5/api/javax/mail/util/ByteArrayDataSource.html) you will find getContentType() method there, which should help but I've never tried it personally.

share|improve this answer

There is decent method in JDK's URLConnection class, please refer to following answer: Getting A File's Mime Type In Java

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.