Java编程获取文本框的内容实例解析

网友投稿 664 2023-04-07


Java编程获取文本框的内容实例解析

在java中如何获取文本框中输入的值,并保存在一个文件之中。具体代码如下:

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){

tryhttp://{

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();

}

}

关于向指定文本框内写入,这一点需要注jlXpQrV意一下。

总结

以上是本实例的全部代码,希望对大家有所帮助。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java枚举的使用方法详解
下一篇:Java基础知识精选 你答对了几道?
相关文章

 发表评论

暂时没有评论,来抢沙发吧~