JavaClassPath[] returns the class search path in use by the Java runtime. This includes classes specified via the CLASSPATH environment variable (if any), directories and ...
JavaNew[classname] constructs a Java object of the specified class. JavaNew[classname, args] constructs a Java object of the specified class, passing the arguments args to ...
JavaObjectToExpression[javaobject] converts the specified Java object reference into its value as a "native" Mathematica expression.
JavaThrow["exception"] causes an exception of the specified class to be thrown in the Java thread that called the Mathematica program in which JavaThrow occurred. ...
Methods[javaclass] returns a list of the Java declarations for all methods of the specified JavaClass. Methods["classname"] lists the methods for the named class. ...
ParentClass[javaclass] returns the JavaClass expression representing the parent class of the specified JavaClass. ParentClass[javaobject] returns the parent class for the ...
ReleaseJavaObject[javaobject] tells the Java memory-management system to forget about any references to the specified JavaObject that are being maintained solely for the sake ...
SameObjectQ[object_1, object_2] returns True if and only if the JavaObject expressions object_1 and object_2 refer to the same Java object.
SetInternetProxy[host, port] sets proxy information in your Java session for accessing the internet.
ShowJavaConsole[] displays the Java console window and begins capturing output sent to the Java System.out and System.err streams. ShowJavaConsole["stdout"] captures only ...