怎样将在程序中计算出的结果放到文件中java
2个回答
2016-05-08
展开全部
这个就需要java中的I/O流来对文件进行读写,举个例子:以FileWriter类来写文件
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
public class Test {
public static void rwFile(){
FileWriter fw = null;
try {
fw = new FileWriter("f:\\text.txt", true);
fw.write("123");//这里向文件中输入结果123
fw.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fw != null) {
try {
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
public static void main(String[] args) {
rwFile();
}
}
这个代码是向文件F盘的text.txt中输入123
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
public class Test {
public static void rwFile(){
FileWriter fw = null;
try {
fw = new FileWriter("f:\\text.txt", true);
fw.write("123");//这里向文件中输入结果123
fw.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fw != null) {
try {
fw.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}
public static void main(String[] args) {
rwFile();
}
}
这个代码是向文件F盘的text.txt中输入123
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询