1

我正在做测试驱动的开发,这需要我为一个接受用户输入的类编写一个测试函数。由于控制台输入功能在测试期间停止输入,因此我使用使用字符串的 InputStream 编写测试。

String str="3\n2\n1\n4\n";
InputStream is = new ByteArrayInputStream(str.getBytes());
assertTrue(app.RunApp(is));

这导致调用 getChoice(InputStream i) 函数,该函数涉及来自 Scanner 的控制台输入。

public int getChoice(InputStream i) throws IOException {
        Scanner s=new Scanner(i);
        s.useDelimiter("\n");
        String y= s.next();
        int x=Integer.parseInt(y);
        return x;
    }

我希望上面的代码一个一个地获取字符串中的数字。但是,发生的事情是它正确地采用了第一个数字,然后流的位置直接进入流的末尾,这导致了 NoSuchElementException。请帮忙!

4

1 回答 1

0

利用...

String y = s.nextLine();  // That will take the entire line instead of only 1st word
于 2012-07-25T04:39:09.290 回答