在Java中,輸出換行可以采用以下幾種方法:
System.out.println("Hello, World!");
System.out.println("This is a new line.");
System.out.print("Hello, World!\n");
System.out.print("This is a new line.\n");
System.out.printf("Hello, World!%n");
System.out.printf("This is a new line.%n");
以上方法都可以在輸出字符串后換行。