Wednesday, March 14, 2012

How to give command line arguments in eclipse

9:25 AM
How to give command line arguments in eclipse
It's simple,Create a test programe on eclipse IDE.public class NameArguments { public static void main(String[] args) { System.out.println("First Name " + args[0]); System.out.println("Last Name " + args[1]); }}Goto: Run->Run Configurationsin that window select Arguments tab and give the arguments(only the arguments)Notice that there is at least one space between every two arguments.Then just click Applyexecute the code. output would beFirst...