在JAVA中如何获取文本框中输入的值,并保存在一个文件之中。具体代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import java.io.*; import javax.swing.*; import java.awt.FlowLayout; import java.awt.event.*; public class WriterTo extends JFrame implements ActionListener{ JButton b;JTextField t; public WriterTo(){ super ( "文本框内容写入文件" ); JLabel l= new JLabel( "请输入内容:" ); t= new JTextField( 20 ); b= new JButton( "写入" ); b.addActionListener( this ); this .add(l); this .add(t); this .add(b); this .setLayout( new FlowLayout()); this .pack(); this .setVisible( true ); } public void actionPerformed(ActionEvent e) { if (e.getSource()==b){ if (t.getText().equals( "" )){ JOptionPane.showMessageDialog( null , "请输入内容~" , "错误" ,JOptionPane.ERROR_MESSAGE); t.grabFocus(); } else { write(t.getText()); JOptionPane.showMessageDialog( null , "写入成功" , "提示" ,JOptionPane.INFORMATION_MESSAGE); } } } public void write(String line){ try { File f= new File( "C:\\Users\\Administrator\\Desktop\\java\\就是这里.txt" ); //向指定文本框内写入 FileWriter fw= new FileWriter(f); fw.write(line); fw.close(); } catch (Exception e){ } } public static void main(String[] args) { new WriterTo(); } } |
关于向指定文本框内写入,这一点需要注意一下。
总结
以上是本实例的全部代码,希望对大家有所帮助。
原文链接:https://zhidao.baidu.com/question/197676958.html?qbl=relate_question_3&word=java%D6%D0%BB%F1%C8%A1%CE%C4%B1%BE%BF%F2%B5%C4%D6%B5