检查命令行参数是否在新行上

时间:2015-11-20 14:43:30

标签: java

如何检查命令行参数是否在新行上?

参数示例:

3
1 2 4
3 3

代码:

public static void main(String[] args){

  for (int index = 0; index < args.length; ++index)
  {
      //if arg is on new line
      System.out.println("args[" + index + "]: " + args[index]);
      }


  }

1 个答案:

答案 0 :(得分:0)

您通常无法使用for eachwhile循环并使用readLine()类上的Console读取行,直到您达到某个标记值。< / p>

点击键盘上的[Enter]将运行该程序,因此您无法添加新行作为输入,除非您使用我上述的机制。