This is an example of a very common Java programming problem. It is typically solved using what is known as the Java Factory Design Pattern. The following link has a nice simple explanation of the Factory pattern - http://www.allapplabs.com/java_design_patterns/factory_pattern.htm
There are many other design patterns that you might find it useful to look at. Reading about them will give you insight into how lots of Java programmers solve commonly occurring problems. The same author explains most of the common design patters at http://www.allapplabs.com/java_design_patterns/java_design_patterns.htm
Now, as to your specific problem. First of all, the POI authors use the Factory design pattern. For example, look at the following code:
Workbook wb1 = WorkbookFactory.create(new FileInputStream("myXlsFile.xls"));
Workbook wb2 = WorkbookFactory.create(new FileInputStream("myXlsxFile.xlsx"));
// this prints "wb1 class = org.apache.poi.xssf.usermodel.XSSFWorkbook"
System.out.println("wb1 class = " + wb1.getClass().getName());
// this prints "wb2 class = org.apache.poi.hssf.usermodel.HSSFWorkbook"
System.out.println("wb2 class = " + wb2.getClass().getName());
So, as a user of POI, you deal with the same Workbook object with the same properties and methods regardless of whether you are processing an xls file or an xlsx file. However, the authors of POI obviously need to have two very different implementations depending on the file type.
How did they do this without having lots of if statements, such as what is in your code? I will redo your example to show you how you might accomplish the same thing.
The first thing you would do is define a DocExtractor class as follows:
public abstract class DocExtractor {
// constructor
public DocExtractor(File f) {
poiFile = f;
}
// the getText method must be defined by all derived classes
public abstract String getText();
// this protected field is visible to all classes which extend DocExtractor
protected File poiFile;
}
The reason I suggest you make DocExtractor abstract is that you do not want code to be able to create a DocExtractor class. The reason you make the getText method abstract is you want to make sure the classes which extend DocExtactor will define their own versions of getText. Hopefully, this reasoning will be become clear as you read on.
You now define what are known as derived classes of DocExtractor (they "extend" DocExtractor). In this example I will define two classes, one for doc files and one for xls files.
// this handles doc files
public class DocExtractorDoc extends DocExtractor {
// constructor
public class DocExtractorDoc(File f) {
// this calls the DocExtractor constructor which has common code for all constructors
super(f);
// put code specific to the DocExtractorDoc constructor here
}
// concrete implementation of the getText method specific to doc files
public String getText() {
// getText code for doc files goes here
}
}
// this handles xls files
public class DocExtractorXls extends DocExtractor {
// constructor
public class DocExtractorXls(File f) {
// this calls the DocExtractor constructor which has common code for all constructors
super(f);
// put code specific to the DocExtractorXls constructor here
}
// concrete implementation of the getText method specific to xls files
public String getText() {
// getText code for xls files goes here
}
}
You now define a DocExtractorFactory class with a single static create method:
public class DocExtractorFactory {
public static DocExtractor create(File f) {
// create the appropriate DocExtractor derived class based on the file extension
String extension = FilenameUtils.getExtension(f.getName());
if (extension.equals("doc") {
return new DocExtractorDoc(f);
} else if (extension.equals("xls") {
return new DocExtractorXls(f);
} else {
// error handling code here -- perhaps throw an exception
}
}
}
Finally, here is some code which uses the above classes
// this actually creates a DocExtractorDoc object (but you don't care)
DocExtractor de1 = DocExtractorFactory.create(new File("myDocFile.doc"));
// this actually uses DocExtractorDoc.getText (but again you don't care)
String s1 = de1.getText();
// this actually creates a DocExtractorXls object
DocExtractor de2 = DocExtractorFactory.create(new File("myDocFile.xls"));
// this actually uses DocExtractorXls.getText
String s2 = de2.getText();
So, what we have basically accomplished is only having the if statements in one place, the factory create method. And you can obviously create as many DocExtractor derived classes as you need to by simply writing the code for the class and making a simple change to the create method.