本文目录一览:
java识别回车改为换行
Java中可以使用 System.getProperty("line.separator") 来识别回车换行符。例如:
String lineSeparator = System.getProperty("line.separator");
String text = "This is a line of text" + lineSeparator + "This is another line of text";
上面的代码中,lineSeparator 变量包含了当前系统的回车换行符,然后我们可以在拼接字符串时使用它来指定换行符。
JAVA 怎么样在输入的时候识别出回车
java中可以使用buffereader类来获得控制台输入的回车键,示例如下:
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class Test {
public static void main(String args[]) throws Exception {
System.out.println("输入:");
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String str = "";
do {
str = bf.readLine();
if (str.length() == 0) { // 如果输入的字符串为空,则说明只输入了一个回车
System.out.println("输入的是回车!");
} else {
System.out.println("输入内容是:" + str);
}
} while (str.length() != 0);
}
}
这样可以在输入回车后提示“输入的是回车!”并结束程序
java中如何表示一个回车符
可以使用Java中\n和\r的换行,不过也是有区别的,如下:
1.\r 叫回车 Carriage Return
2.\n 叫新行 New Line
但是都会造成换行,使用System.getProperty("line.separator")来获取当前OS的换行符
java 代码
1. String userInputString = userInput;
2. userInputString = userInputString.replaceAll ( "\r", "" );
3. userInputString = userInputString.replaceAll ( "\n", "\\\\"+System.getPropert("line.separator"));