要将行添加到文件中,您可以使用编程语言中的文件操作功能。以下是几种常见编程语言中如何将行添加到文件中的示例:
with open('file.txt', 'a') as file:
file.write('This is a new line.\n')
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.List;
public class Main {
public static void main(String[] args) {
List<String> lines = List.of("This is a new line.");
try {
Files.write(Paths.get("file.txt"), lines.getBytes());
} catch (IOException e) {
e.printStackTrace();
}
}
}
const fs = require('fs');
fs.appendFile('file.txt', 'This is a new line.\n', (err) => {
if (err) throw err;
console.log('The line has been added.');
});
using System;
using System.IO;
class Program {
static void Main() {
string line = "This is a new line.";
File.AppendAllText("file.txt", line + Environment.NewLine);
}
}
请注意,这些示例中的代码都是在将行添加到当前目录下的名为 file.txt
的文件中。如果您需要将行添加到其他文件中,请将文件名更改为所需的文件名。
领取专属 10元无门槛券
手把手带您无忧上云