vote up 4 vote down star

I think the above question says it all.

flag

73% accept rate

2 Answers

vote up 7 vote down check

You run the createObject but don't call the "init" before running the static method. For example:

<cfset systemObject = createObject("java", "java.lang.System") />
<cfoutput>#systemObject.currentTimeMillis()#</cfoutput>

In this case "currentTimeMillis()" is a static method of the System class.

link|flag
vote up 1 vote down

I would also mention that the class has to be in CF's classpath.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.