Monday, April 29, 2013

Tutorial 5: command line arugument


Tutorial 5: command line arugument

Code: 

CommandLineInput.java

package tutorial;

public class CommandLineInput {
    public static void main(String[] args) {
        String strTemp1 = args[0];
        String strTemp2 = args[1];
        System.out.println(strTemp1 + "\n" + strTemp2);
    }
}

No comments:

Post a Comment