How to use Command line Arguments? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to use Command line Arguments?

Class ComLineTest { Public static void main( string args[ ]) { int count,i=0; String string; count = args.length; System.out.println("Number of Arguments= " + count); while(I < count) { String = args[ i ]; i = i + 1; System.out.println(i + " : " + " java is " + string+" ! "); } } }

2nd Aug 2021, 6:47 AM
RAHUL T U
RAHUL T U - avatar
2 Answers
+ 4
Not feasible in SoloLearn. You will need to test it in a PC/Laptop, or in mobile device where you have access to the terminal by use of a utility. https://javatutoring.com/command-line-arguments-java-with-examples/
2nd Aug 2021, 7:50 AM
Ipang
+ 1
in sololearn you can simulate it: class ComLineTest { public static void main( String[] args) { if (args.length==1 && args[0].equals("-") ) args = new String[]{ "10", "20.0", "argument_03" }; System.out.println("Number of arguments: " +args.length); for(int i=0; i< args.length; i++) { System.out.println(" argument " +i +": " +args[i] ); } } }
3rd Aug 2021, 12:05 AM
zemiak