RE: [coldbox:9898] Using JavaLoader

If you cfdump out a java object, you will see the public methods and fields. You can get the private stuff as well by using Java Reflection

<cfset object = createObject(“java”,“java.lang.Object”)>
](http://object.getClass().getDeclaredMethods()>);

#[method.getName()#
](http://method.getName()#
);

Note, getDeclaredMethods doesn’t list inheritied methods.

Generally speaking though, it’s going to me much easier to use use the documentation on the Java class.

Thanks!

~Brad

Thanks Brad. I will try that approach. Unfortunately the site doesn’t seem to have any docs available. Will look into this further but good to know that CFDump lists out the public methods. Thanks!

Nolan Dubeau

Load .,8,1