https://issues.apache.org/bugzilla/show_bug.cgi?id=54625
stuart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- OS| |All --- Comment #1 from stuart <[email protected]> --- If anybody needs it, here is the workaround that I use public class POIWorkbookFactory { public static Workbook create(InputStream inp) throws Exception { Workbook workbook = WorkbookFactory.create(inp); if (workbook instanceof HSSFWorkbook) { Field field = HSSFWorkbook.class.getDeclaredField("_udfFinder"); field.setAccessible(true); field.set(workbook, new IndexedUDFFinder(UDFFinder.DEFAULT)); } return workbook; } } -- 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]
