In Java, for a normal main method :
public static void main(String[] args){
// code here
}
String[] args
is used to take some parameters from command line. I can run this file from command prompt by :
javac filename.java
java filename -30
But, it takes more steps, and I must cd to this folder. (to long for each time). So, Does anyway to run this file with some arguments for main in Eclipse.
Thanks :)