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

Is there any way of checking if a byte[] is a pdf without opening?

I have some code to display a list of byte[] as pdf thumbnails. I previously knew all the byte[] were pdf's because we filtered the servlet to only return these. Now the requirement has changed and I need to bring all file types back. Is there any way of checking what the byte[] is, or more specifically determining if it isn't, a pdf?

share|improve this question
1  
Maybe this can be of some assistance: stackoverflow.com/questions/2731917/… – JWL_ May 31 '11 at 11:41
1  
-1: Open a hex editor and see the header of a PDF. Not hard. Answer: %PDF is the 1st 4 bytes. – leppie May 31 '11 at 11:41
@leppie: some formats haven't such specifications (like csv for example). So, until you find "official" specification - it's very bad to just "open a hex editor". For example, JPEG format is not so easy :) – chopikadze Jan 3 '12 at 6:25
@chopikadze: Who was talking about other file formats except you? And yes JPEG is easy, FF D8 DD E0 – leppie Jan 3 '12 at 6:42
@leppie: JPEG is FF D8 FF, and instead of E0 sometimes (from photo cameras) you can get E1. In general, I meant that sometimes formats is not so easy as it is at first glance. Nothing more. – chopikadze Jan 3 '12 at 7:36
show 1 more comment

3 Answers

up vote 9 down vote accepted

Check the first 4 bytes of the array.

If those are 0x25 0x50 0x44 0x46 then it's most probably a PDF file.

share|improve this answer

As far as I know all PDF's start with %PDF, so you could check the first bytes against this string.

share|improve this answer

First four bytes should be: 0x25 0x50 0x44 0x46 (in hex format, in ASCII it's %PDF). "Magic numbers" for another formats you can find here

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.