https://bz.apache.org/bugzilla/show_bug.cgi?id=63303
--- Comment #3 from Greg Woolsey <[email protected]> --- That method only exists in the parent class, org.apache.poi.ss.usermodel.WorkbookFactory >From the source you can see that it defaults to readOnly=false when calling org.apache.poi.xssf.usermodel.XSSFWorkbookFactory Further, org.apache.poi.xssf.usermodel.XSSFWorkbookFactory has never implemented the method createWorkbook(File), only ever inheriting that method from WorkbookFactory. It's all there in the source and SVN history if you care to investigate. As Dominik said above, it sounds like your classpath has multiple different POI JAR files in it. This kind of runtime only error is almost always due to stale JARs in the classpath and/or differences between compile and run class loading - e.g. IDE configuration vs deployment server/container configuration. -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
