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.

Is there a way to determine MS Office Excel file type in Apache POI? I need to know in what format is the Excel file: in Excel '97(-2007) (.xls) or Excel 2007 OOXML (.xlsx).

I suppose I could do something like this:

int type = PoiTypeHelper.getType(file);
switch (type) {
case PoiType.EXCEL_1997_2007:
   ...
   break;
case PoiType.EXCEL_2007:
   ...
   break;
default:
   ...
}

Thanks.

share|improve this question
1  
Why do you need to know up front? Can you not just use WorkbookFactory and have it create the appropriate type for you? – Gagravarr Jan 25 at 13:44
This is also a good variant, thanks. – Alexey Berezkin Jan 25 at 14:45

2 Answers

up vote 2 down vote accepted

Promoting a comment to an answer...

If you're going to be doing something special with the files, then rjokelai's answer is the way to do it.

However, if you're just going to be using the HSSF / XSSF / Common SS usermodel, then it's much simpler to have POI do it for you, and use WorkbookFactory to have the type detected and opened for you. You'd do something like:

 Workbook wb = WorkbookFactory.create(new File("something.xls"));

or

 Workbook wb = WorkbookFactory.create(request.getInputStream());

Then if you needed to do something special, test if it's a HSSFWorkbook or XSSFWorkbook. When opening the file, use a File rather than an InputStream if possible to speed things up and save memory.

If you don't know what your file is at all, use Apache Tika to do the detection - it can detect a huge number of different file formats for you.

share|improve this answer
Thanks Gagravarr! – Alexey Berezkin Jan 25 at 15:07

You can use:

// For .xlsx
POIXMLDocument.hasOOXMLHeader(new FileInputStream(file));

// For .xls
POIFSFileSystem.hasPOIFSHeader(new FileInputStream(file));

These are essentially the methods that the WorkbookFactory#create(InputStream) uses for determining the type

share|improve this answer
Thanks Rjokelai. – Alexey Berezkin Jan 25 at 13:16

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.