我想通过标准输入(控制台)向我的程序发送输入,但是当我这样做时,它会发送另外两个字符,Carriage Return和Line Feed。我不希望我的程序读这些。有没有办法可以发送我输入的内容而不发送这些字符?
这是我的代码:
import java.io.IOException;
public class Main {
public static void main(String[] args) {
while (true) {
try {
System.out.println(System.in.read());
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
控制台输出:
a <- Here I typed 'a' and hit enter
97 <- These three came from stdout
13 <-
10 <-
答案 0 :(得分:2)
您可以使用其中一个设计为一次读取一行的类,例如BufferedReader
。这将拉入文本行,但解析行终止字符:
while (true) {
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.println(reader.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
请记住,由于这会拉动整行,因此输出将是String
,而不是逐字节。
答案 1 :(得分:1)
是的,你可以。一种方法是替换它,
System.out.println(System.in.read());
与
char ch = (char) System.in.read();
if (ch != '\r' && ch != '\n') {
System.out.println((int) ch);
}