java command line arguments
1.The arguments which are passing from command-prompt are called command-line arguments.
With these command-line arguments, JVM will create an array & by passing that array as arguments
JVM will call main( ) method.
for example:-
class Test
{
public static void main(String [ ] args)
{
System.out.println("javabychetan.blogspot.com ");
for(int i=0;i<args.length;i++)
{
System.out.println(args[i]);
}
}
}