public class WorkbookResource {
/** test only "loader" with a default location for loading workbooks **/
public static Workbook getWorkbook(String file) throws IOException {
InputStream stream = WorkbookResource.class.getResourceAsStream(file);
return new PoiWorkbookReader().read(stream);
}