在Spring Boot中,可以使用以下方法來修改內部文件:
java.nio.file.Files
類的write
方法將新的內容寫入文件。示例代碼如下:import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
String filePath = "path/to/file.txt";
String newContent = "New content";
try {
Path path = Path.of(filePath);
Files.write(path, newContent.getBytes(), StandardOpenOption.WRITE);
} catch (IOException e) {
// 處理文件操作異常
}
java.io.FileWriter
類來寫入文件。示例代碼如下:import java.io.FileWriter;
import java.io.IOException;
String filePath = "path/to/file.txt";
String newContent = "New content";
try {
FileWriter writer = new FileWriter(filePath);
writer.write(newContent);
writer.close();
} catch (IOException e) {
// 處理文件操作異常
}
請注意,以上代碼中的filePath
需要替換為實際文件的路徑,newContent
是要寫入文件的新內容。同時,還需要處理可能拋出的IOException
異常。