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

I have a file uploader module. The UI is created using simple HTML and Javascript. Server side I am using Java code. I want to check the type of the uploaded file.

share|improve this question
see also stackoverflow.com/questions/51438/… – Mark Elliot Jun 21 '10 at 4:09
In server side or client side?? – rahul Jun 21 '10 at 4:10
@Rahul:I want to check the file type in Server side. – User 1034 Jun 21 '10 at 4:13

1 Answer

up vote 0 down vote accepted

Files don't really have types. The best you can do would be to attempt to load the file as an XLS.

  • If the load succeeds, the file is most likely an XLS.
  • If the load fails, the file is either an invalid/malformed XLS, or not an XLS at all.

You can also look at the uploaded file name or the content type, but neither of these is definitive; i.e. they might say that the file is an XLS when it is something completely different.

share|improve this answer
I think you mean "XLS" (as in Excel's file format) =) – Mark Elliot Jun 21 '10 at 4:28
Yup ... good catch. – Stephen C Jun 21 '10 at 4:33

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.