阅读量:0
在Java中,没有现成的writeLine方法,但是可以使用write方法和println方法来实现类似的功能。
- 使用write方法:
import java.io.FileWriter; import java.io.BufferedWriter; import java.io.IOException; public class Main { public static void main(String[] args) { try { FileWriter fileWriter = new FileWriter("output.txt"); BufferedWriter bufferedWriter = new BufferedWriter(fileWriter); bufferedWriter.write("Hello, World!"); bufferedWriter.newLine(); // 写入换行符 bufferedWriter.write("This is a new line."); bufferedWriter.close(); } catch (IOException e) { e.printStackTrace(); } } }
- 使用println方法:
import java.io.PrintWriter; import java.io.FileOutputStream; import java.io.IOException; public class Main { public static void main(String[] args) { try { PrintWriter printWriter = new PrintWriter(new FileOutputStream("output.txt")); printWriter.println("Hello, World!"); printWriter.println("This is a new line."); printWriter.close(); } catch (IOException e) { e.printStackTrace(); } } }
这两种方法都可以实现在文件中写入一行文本并换行。使用write方法需要手动添加换行符,而使用println方法会在每次写入后自动换行。