0

我写了一个程序,要求像这样的用户输入:

System.out.println("Where would you like the output file to end up? (full path and desired file name): ");
Scanner out_loc = new Scanner(System.in);
output_loc = out_loc.nextLine();

...

System.out.println("Hey, please write the full path of input file number " + i + "! ");
System.out.println("For example: /home/Stephanie/filein.txt");
Scanner fIn = new Scanner(System.in);

我以这种方式多次要求输入,但如果您输入错误,可能会非常痛苦,因为您必须终止程序并重新运行。当你运行一个程序时,有没有一种简单的方法可以一次输入所有内容?就像在运行时在命令行中声明它一样?

java -jar /home/Stephanie/NetBeansProjects/cBelow/dist/cBelow.jar -userinputhere?
4

2 回答 2

2

您可以使用文件重定向。

program < file

将文件发送到程序的标准输入。在你的情况下,

java -jar /home/Stephanie/NetBeansProjects/cBelow/dist/cBelow.jar -userinputhere <文件

或者您可以从程序中的文件中读取。您可以将其设为可选,例如

InputStream in = args.length < 1 ? System.in : new FileInputStream(args[0]);
Scanner scan = new Scanner(in); // create the scanner just once!
于 2012-11-05T16:54:54.070 回答
0

当您将命令运行为:

java -jar /home/Stephanie/NetBeansProjects/cBelow/dist/cBelow.jar -userinputhere?

它运行public static void main(String[] args)您的主要类的方法,您可以在其中userinputhere直接获得:

  public static void main(String[] args)
     String userinputhere = args[0];
     ..... rest of your code
   }

如果有多个用户输入,您可以将它们全部获取为:

  public static void main(String[] args)
      String userinput1 = args[0];
      String userinput2 = args[1];
      String userinput3 = args[2];
      //and so on..
      ..... rest of your code
  }
于 2012-11-05T16:56:46.587 回答