gpt4 book ai didi

java - 查询InputStream "System.in"

转载 作者:行者123 更新时间:2023-12-01 14:16:19 27 4
gpt4 key购买 nike

我想实现以下目标:

BufferedInputStream is = new BufferedInputStream(System.in);
int c = 0;
while((c=is.read())!=-1)
Files.copy(is, path3, StandardCopyOption.REPLACE_EXISTING);

然而,它永远陷入等待 System.in 的状态。有什么解决办法吗?

提前致谢。

最佳答案

如果您试图停止阅读换行符、回车符或流结束符,您可以尝试-

do {

try {

c = is.read();

// Do something

} catch (IOException e) {

e.printStackTrace();

}

} while ((c != -1) & (c != '\n') & (c != '\r'));

关于java - 查询InputStream "System.in",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18082900/

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