用JAVA实现把数据保存到一个TXT文件中

2024-12-16 01:46:39
推荐回答(2个)
回答1:

1、为保存按钮添加事件Ok.addActionListener(this);-----------> Ok.addActionListener(new ButtonListener());
2、实现ButtonListener
public class ButtonListener implements ActionListener {
/**
* Method actionPerformed
*
*
* @param e
*
*/
public void actionPerformed(ActionEvent e) {
try {
String sex = "";
if(box1.getState()){
sex="男";
}else{
sex="女";
}
FileWriter fileWriter=new FileWriter("D:\\Result.txt",true);
fileWriter.write("happy!\r\n");
fileWriter.write("性别: "+sex+"\r\n");
fileWriter.flush();
fileWriter.close();
//Runtime.getRuntime().exec("notepad.exe");
} catch (Exception er) {
System.out.println(er.getMessage());
}
}
}

回答2:

public class Test{
public static void main(String[] args)
{
try {
BufferedWriter bw = new BufferedWriter(new FileWriter("data.txt"));
//文件将会创建在程序所在的文件夹中,
//("data.txt")也可以加上路径,如:("C:\\data.txt"),这样就会在C盘根目录创建一个data.txt文件
BufferedOutputStream out=new BufferedOutputStream(new FileOutputStream("data2.txt"));
DataOutputStream dout=new DataOutputStream(new BufferedOutputStream(new FileOutputStream("data3.txt")));
PrintStream pout=new PrintStream(new BufferedOutputStream(new FileOutputStream("data4.txt")));
RandomAccessFile rout=new RandomAccessFile("data5.txt","rw");//"rw"表示此文件可读可写
//设置文本内容
StringBuilder sb=new StringBuilder("");
sb.append("How are you?"+"\r\n");
sb.append("Fine,thanks,and you?"+"\r\n");
sb.append("Fine,too.");
String a=sb.toString();
byte[] b=(a).getBytes();
//写入文件,还可以用其他方法如:write(String str)
bw.write(a,0,b.length);
out.write(b, 0, b.length);
dout.write(b, 0, b.length);
pout.write(b, 0, b.length);
rout.write(b, 0, b.length);
//关闭流
out.close();
bw.close();
dout.close();
pout.close();
rout.close();
} catch (IOException ex) {
System.out.println(ex);
}
}
}