java的回车字符

2024-02-15 17:11:55

```java

String str = "Hello\nWorld";

System.out.println(str);

```

```

Hello

World

```