Main Content

javaObject

Call Java constructor

Description

example

JavaObj = javaObject(ClassName,x1,...,xN) returns Java® object array, JavaObj, created by the Java constructor for the class with the argument list matching x1,...,xN.

Examples

collapse all

Create a Java® object strObj of class java.lang.String.

strObj = javaObject('java.lang.String','hello');

Input Arguments

collapse all

Java class name, specified as a string or character vector.

Data Types: char

Java constructor input arguments, 1 through N (if any), required by ClassName, specified as any type. The class constructor argument list specifies the argument type.

Version History

Introduced before R2006a