标签:
public class Test{ public static void main(String args[]) { try { if (args.length == 0) { throw new IllegalArgumentException("Give a file name"); } new Test().run(args[0]); } catch (IllegalArgumentException e) { System.err.println(e.getMessage()); } } }
在命令后者终端工具中:
先编译javac Test.Java
再运行java Test arg1 arg2 arg3 ……(参数之间用空格隔开)
在IDEA中:
点击Run下的Edit Configurations
配置Configuration分页中的Program arguments选项,就可以在idea中传入参数,应用自后,这样按住control+shift+r就可以启动运行了。
小窍门:如在工作时经常要写System.out.println(); 这个在idea里已经预设好了,直接输入sout 然后按tab键就可以了,你也可以试试输入soutm,soutp加tab键
标签:
原文地址:http://www.cnblogs.com/crazyacking/p/5581930.html