command line arguments
Posted: Sat Jul 28, 2001 11:50 pm
How do I run a Java application from within Textpad if the application is expecting command line arguments? In other words, how can I RUN this class within TEXTPAD so that I can pass in an argument?
class CommandLineArguments {
public static void main (String args[]) {
System.out.println("args[0] = " + args[0]);
}
}
class CommandLineArguments {
public static void main (String args[]) {
System.out.println("args[0] = " + args[0]);
}
}