tags:

views:

73

answers:

3

I want to use my args array.

I mean this array:

public static void main(String[] args)

Where can I run something like java Test one two three?

+3  A: 

Check the properties of the java project. There you see the menu item "Run" There you can specify arguments for you commandline.

Robert Cabri
+4  A: 

In the run configuration section. Here is how.

Pablo Santa Cruz
+3  A: 

Go to the project properties (either File -> Project properties or richt click on the project in he projects list on the left), select "Run" and there you can set it.

johannes
can I enable assertions on the Vm options box?
omgzor