我正在使用 Netbeans 传递命令行参数,但我得到了 ArrayIndexOutOfBoundsException
。
我的代码是:
public class CmdLineArgumentPassing
{
public static void main(String args[])
{
System.out.println("Count : " + args.length);
System.out.println("i : "+args[0]);
}
}
输出是:
Count : 0
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
最佳答案
右键单击项目,选择属性,转到运行页面,添加命令行参数。
关于java netbeans 命令行参数传递,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3474485/