Java方法04:拓展命令行传参
有时候你希望运行一个程序时候再传递给它消息。这要靠传递命令行参数给main()函数实现。
命令行参数是在执行程序时候紧跟在程序名字后面的信息。
【下面的程序打印所有的命令行参数】
public class CommandLine {
public static void main(String args[]){
for(int i=0; i<args.length; i++){
System.out.println("args[" + i + "]: " + args[i]);
}
}
}
【命令行】
$ javac CommandLine.java
$ java CommandLine this is a command line 200 -100
args[0]: this
args[1]: is
args[2]: a
args[3]: command
args[4]: line
args[5]: 200
args[6]: -100
【错误: 找不到或无法加载主类,解决方法】
在项目输出的项目目录下执行java命令,写完整路径即可。
$ java com.knono.chapter4.Demo04 Hello World