当我将用户添加到数组列表时,我有这段代码要写入文件。代码工作正常:
public void writeToFile(String content)
{
try {
File file = new File("H:/JavaWorkspace/TradingPlatformProject/User_Report.txt");
if (!file.exists()) {
file.createNewFile();
}
FileWriter fw = new FileWriter(file.getAbsoluteFile(), true);
BufferedWriter bw = new BufferedWriter(fw);
bw.write(content + "\n" );
bw.close();
logger.info("Recorded to User Activity file");
} catch (IOException e) {
e.printStackTrace();
}
}
当用户执行不同的操作(例如,请求权限升级)时,我想写入一个单独的文件。有什么方法可以在不复制此代码的情况下写入新文件“UserRequests.txt”?