Creating a Java application launch configuration
Inside the Run Configuration ---> Main tab , you can specify the Main class to run
Inside the Run Configuration ---> Arguments tab , you can specify the arguments passed into the main class. Simply enter your input arguments here and each argument is separated by space (eg arg1 arg2 arg3 will pass these 3 arguments to your main class) . You can also parameterize the arguments by using eclipse predefined variables folder_prompt, file_prompt or string_prompt (You can use the "variables..." button inside the arguments tab to help you to configure them) . When you run the main class, Eclipse will then prompt the dialogs to let you enter the arguments
Inside the Run Configuration ---> JRE tab ,you can specify the JRE to execute the main class.