jinit {rJava}R Documentation

Initialize Java VM

Description

.jinit initializes the Java Virtual Machine (JVM). This function must be called before any rJava functions can be used.

Usage

.jinit(classpath = NULL, ..., silent = FALSE)

Arguments

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.

Value

Currently the return value is implementation dependent, mostly just the return code as returned by the low-level JVM function.

See Also

Examples

## Not run: 
.jinit(classpath="myClasses.jar")
## End(Not run)

[Package rJava version 0.3-6 Index]