A command-line argument is nothing but the information that we pass after typing the name of the Java program during the program execution. The command requires no arguments. The code illustrates that args length gives us the number of command line arguments. If we neglected to check args length, the command would crash if the user ran it with too few command-line arguments.
A command-line argument is information that directly follows the program's name on the command line when it is executed. To access the command-line arguments inside a Java program is quite easy. They are stored as strings in the String array passed to main ( ).
This is a Java program that uses command line arguments to print the values entered by the user.
//02 Command Line Arguments in Java import java.lang.*; class command { public static void main(String args[]) { for(int i=0;i<args.length;i++) { System.out.println(args[i]); } } }
ram sam raviTo download raw file Click Here
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions