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());
|
How to get file type extension from
|
||||
|
|
|
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 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 |
|||||||||
|
|
It's not perfect, but the Java Mime Magic library may be able to infer the file extension:
|
|||
|
|
|
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. |
|||
|
|
|
There is decent method in |
|||
|
|