Pass array as argument

This article shows how to pass array as an argument.

Javonet allows you to reference and use modules or packages written in (Java/Kotlin/Groovy/Clojure, C#/VB.NET, Ruby, Perl, Python, JavaScript/TypeScript) like they were created in your technology. If have not yet created your first project check Javonet overview and quick start guides for your technology.

Custom JAR library with method accepting array

With Javonet it is possible to reference any custom JAR library and interact with arrays declared on types defined within that module almost the same as with any other JavaScript library.

Snippet below represents the sample code from JAR library that has methods which return or process the arrays:

public String[] get1DArray() {
	return new String[]{"one", "two", "three", "four", "five"};
}

public String[][] get2DArray() {
	return new String[][]{{"S00", "S01"},{"S10", "S11"}};
}

public double addArrayElementsAndMultiply(Double[] myArray, double myValue) {
	Double sum = 0.0;
	for (Double value : myArray) {
		sum += value;
	}
	return sum * myValue;
}

With Javonet SDK it is possible to pass array as an argument to one of this method.

Passing array

// use Activate only once in your app
Javonet.activate("your-license-key")

// create called runtime context
let calledRuntime = Javonet.inMemory().jvm()

// set up variables
const libraryPath = resourcesDirectory + '/TestClass.jar'
const className = 'TestClass'

// load custom library
calledRuntime.loadLibrary(libraryPath)

// get type from the runtime
let calledRuntimeType = calledRuntime.getType(className).execute()

// create type's instance
let instance = calledRuntimeType.createInstance().execute()

// invoke instance's method
let response = instance.invokeInstanceMethod("addArrayElementsAndMultiply", [12.22, 98.22, -10.44], 9.99).execute()

// get value from response
let result = response.getValue()

// write result to console
console.log(result)

In the snippet above, addArrayElementsAndMultiply method needs array to be the first argument. Depending on called technology, the array may need to have a specific type, f. e. array of doubles. In this case, proper cast is needed before passing the array from JavaScript.

The same operation can be performed remotely by just changing the new Runtime Context invocation from in memory to tcp that will create and interact with your JAR library objects on any remote node, container or service that hosts Javonet Code Gateway. This way you can preserve the same logic in your application and instantly switch between monolithic and microservices architecture without the need to implement the integration layer based on web services or other remote invocation methods.

Read more about use cases and software architecture scenarios where Javonet runtime bridging technology can support your development process.