Java中,如何将函数求出的结果以文件形式输出(求代码)

2025-01-01 05:18:11
推荐回答(1个)
回答1:

public static void main(String[] args) throws Exception {
//test14();
FileWriter fw = new FileWriter(new File("E:/test.txt"));
fw.append(test16());
fw.close();
}

public static String test16() throws Exception{
return "test";
}