使用Console读取System.in for Intellij

时间:2014-09-29 04:56:26

标签: java intellij-idea

我需要打开控制台并使用Intellij输入我的作业输入。 Eclipse有一种方法可以使用 Scanner 类并阅读 System.in ,但在IntelliJ中运行相同的代码不起作用,因为我无法在控制台中输入任何内容。

有没有办法做到这一点?
我的代码如下:

    public class BasicAssertions {
       @Test
       public void testAssertions(){
           System.out.println("Enter: ");
           Scanner reader = new Scanner(System.in);
           int first = reader.nextInt();
           int second = reader.nextInt();
           String s = reader.next();
           String s2 = reader.next();
           assertTrue(first<=second);
           assertFalse(first+second >100);
           assertNotEquals(s,s2);
           assertNotNull(s2);    
       }    
   }

2 个答案:

答案 0 :(得分:23)

解决。要显示正确的控制台,需要public static void main()方法,否则使用默认 JUnit测试配置运行只会导致控制台无法接收输入。

答案 1 :(得分:6)

只需单击控制台窗口并输入,它就适用于IntelliJ 13 CE。 看到下面的图片,我点击了控制台并写了文字(它显示为绿色然后,我输入并显示):

enter image description here