gpt4 book ai didi

java - BufferedReader readLine() 无法通过 konsole 工作(Ubuntu 12.10)

转载 作者:行者123 更新时间:2023-12-02 00:04:23 25 4
gpt4 key购买 nike

public static void main(String[] args) throws IOException{

String msg;
BufferedReader userIn = new BufferedReader(new InputStreamReader(System.in));
System.out.println("please type something now:");
msg = userIn.readLine();
System.out.println(msg);

userIn.close();
}

在 Eclipse 中完美运行,但是当我运行 konsole msg 时,不会打印。

提前致谢

最佳答案

它取决于操作系统。在您的情况下,System.out.println正在使用缓冲输出。您的程序在 System.out.println 将消息刷新到标准输出之前结束,因此您看不到任何内容。

尝试调用System.out.flush()来强制执行。

相关问题:

关于java - BufferedReader readLine() 无法通过 konsole 工作(Ubuntu 12.10),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14184424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com