-
-
Notifications
You must be signed in to change notification settings - Fork 39
createJavaObject
Julian Halliwell edited this page May 3, 2023
·
1 revision
For advanced usage, allows java objects to be instantiated from the bundled POI and other java libraries.
Using this method rather than the built-in CFML CreateObject()
function will ensure that the version of the jar included with the library is used rather than other versions that may be on the CFML engine's class path.
cellRange = spreadsheet.createJavaObject( "org.apache.poi.ss.util.CellRangeAddress" ).init( 0, 0, 0, 0 );