jinit {rJava} | R Documentation |
.jinit
initializes the Java Virtual Machine (JVM). This
function must be called before any rJava functions can be used.
.jinit(classpath = NULL, ..., silent = FALSE)
classpath |
Any additional classes to include in the Java class
paths (i.e. locations of Java classes to use). This path will be
prepended to paths specified in the CLASSPATH environment
variable. |
... |
Optional Java initialization parameters (implementation-dependent). |
silent |
If set to TRUE no warnings are issued. |
Currently the return value is implementation dependent, mostly just the return code as returned by the low-level JVM function.
## Not run: .jinit(classpath="myClasses.jar") ## End(Not run)