What parameter in B4J is to replace the File parameter of the following inline java method to call it with RunMethod??
e.g,
I know the ... refers to a variable number of paramaters
I really could not figure it!!
e.g,
B4X:
(Me).As(JavaObject).RunMethod("process",Array As Object("sometext",??))
B4X:
#if java
public static void process(String name, File... files) {
for (File file : files){
sub_process(name, file, ".");
}
}
#end if
I really could not figure it!!
Last edited: