我有以下Java主类,我试图使用IntelliJ IDEA中的Gradle插件编译和运行:
package com.mikidep.bookshop;
import java.io.IOException;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner in = new Scanner(System.in);
System.out.print("Inserisci testo qui: ");
System.out.println(in.nextLine());
System.out.println("Yee!");
}
}
我的build.gradle如下:
group 'com.mikidep.bookshop'
version '1.0-SNAPSHOT'
apply plugin: 'application'
mainClassName = "com.mikidep.bookshop.Main"
sourceCompatibility = 1.5
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
}
run {
standardInput = System.in
}
现在如果我在终端中运行gradle run -q
,一切都按预期工作。但是,我想使用这个IDEA运行配置进行测试运行:
在我做一些控制台输入之前,一切都很好。 in.nextLine()
抛出以下异常:
线程中的异常" main" java.util.NoSuchElementException:没有行 发现于java.util.Scanner.nextLine(Scanner.java:1585)at com.mikidep.bookshop.Main.main(Main.java:10)
我也尝试调试它,并注意到System.in
中的所有字段似乎都被清零了,就像整个流没有被初始化一样。谁知道发生了什么?
编辑:我刚刚确认这也影响了构建脚本:我将这些行添加到了运行任务
System.out.println("Wait...")
System.in.read()
System.out.println("Ok!")
但Gradle立即打印这两行,而不是等待我的输入。
答案 0 :(得分:2)
System.in
不是脚本参数。
在命令行中,由于您没有指定Gradle期望的任何参数,因此它只使用您键入的剩余标准输入。在IDEA中,标准输入和脚本参数是分开的,标准输入来自运行或调试控制台窗口。