Set Java Main Method Arguments

\i O V A string::args

Parameter Type Range Description
args string ASCII chars (0x01 .. 0xFF) Arguments passed to the main method

Sets the arguments that will be passed to the main method

public static void main(String[] args)

when the Java VM is started with \iOVS or with the debugger.

Note

Response: [ACK]

Example

\iOVAArg1 Arg2 Arg3\0

In Java this arguments will be passed to the main method in

args[0] args[1] args[2]

See also:

Java
Start Java Binary
Can Run Java