java中JFrame按钮添加事件,选择路径放到文本框里面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java中JFrame按钮添加事件,选择路径放到文本框里面相关的知识,希望对你有一定的参考价值。
1。下面的代码是选择文件之后,在控制台输出路径,我只想选择路径之后就放到文本框中显示出来。
2.最好能添加上选择根目录的方法。
3.请朋友们给个思路。
package com.dao;
/**
* @param args
*/
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
public class Win extends JFrame
JButton jb = new JButton("上传");
public Win()
jb.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
JFileChooser jfc = new JFileChooser();
if(jfc.showOpenDialog(Win.this)==JFileChooser.APPROVE_OPTION )
//解释下这里,弹出个对话框,可以选择要上传的文件,如果选择了,就把选择的文件的绝对路径打印出来,有了绝对路径,通过JTextField的settext就能设置进去了,那个我没写
System.out.println(jfc.getSelectedFile().getAbsolutePath());
);
//这下面的不用在意 一些设置
add(jb);
setLayout(new FlowLayout());
setSize(480, 320);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLocationRelativeTo(null);
public static void main(String[] args)
// TODO Auto-generated method stub
new Win().setVisible(true);
你需要的方法在按钮事件方法中,有问题追问,good luck!
通过选中文件获得绝对路径,点确定读取文件
import java.awt.TextArea;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
public class Test2 extends JFrame implements ActionListener
JButton button;
JButton Select;
JButton btnOK;
JTextField textfield;
JPanel p;
JFileChooser fc = new JFileChooser();
TextArea area;
public Test2()
p = new JPanel(); // 建立一个面板
this.getContentPane().add(p);// 把面板添加到框架
p.add(new JButton("文本"));// 把一个文本按钮添加到面板
textfield = new JTextField(10);
p.add(textfield); // 把一个文本框添加到面板
Select = new JButton("浏览");
p.add(Select); // 把一个浏览按钮添加到面板
Select.addActionListener(this);
btnOK = new JButton("确定");
p.add(btnOK);// 把一个确定按钮添加到面板
btnOK.addActionListener(this);
public void actionPerformed(ActionEvent e)
// 当按下选择按钮,打开一个文件选择,文本框显示文件路径
if (e.getSource() == Select)
int intRetVal = fc.showOpenDialog(this);
if (intRetVal == JFileChooser.APPROVE_OPTION)
textfield.setText(fc.getSelectedFile().getPath());
else if (e.getSource() == btnOK) // 当按下确定按钮,生成一个新框架,框架里面有一个文本域,显示打开文件的内容
JFrame f = new JFrame();
f.setSize(400, 400);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
String extensionName = getExtensionName(textfield.getText());
if ("txt".equals(extensionName))
f.setTitle("显示文本");
area = new TextArea();
//获取文本值
String text = readTxt(textfield.getText());
area.setText(text);
f.add(area);
f.setVisible(true);
else if ("jpg".equals(extensionName) || "png".equals(extensionName) || "gif".equals(extensionName))
f.setTitle("显示图片");
Icon img = new ImageIcon(textfield.getText());
JLabel label = new JLabel(img);
//添加滚动条
JScrollPane jsp = new JScrollPane(label);
f.add(jsp);
f.setVisible(true);
else
JOptionPane.showMessageDialog(null, "请选择txt/jpg/png/gif格式的文件!");
/**
* @Description:获取文件后缀名
* @param filename
* @return
* @throws
*/
private String getExtensionName(String filename)
if ((filename != null) && (filename.length() > 0))
int dot = filename.lastIndexOf('.');
if ((dot > -1) && (dot < (filename.length() - 1)))
return filename.substring(dot + 1);
return filename;
/**
* @Description:读取文件
* @param path - 文件地址
* @return
* @throws
*/
private String readTxt(String path)
if (path == null || "".equals(path))
return "";
StringBuffer sb = new StringBuffer();
File file = new File(path);
InputStreamReader read = null;
BufferedReader reader = null;
try
read = new InputStreamReader(new FileInputStream(file), "gb2312");
reader = new BufferedReader(read);
String line;
while ((line = reader.readLine()) != null)
sb.append(line);
sb.append("\n");
catch (UnsupportedEncodingException e)
e.printStackTrace();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
finally
if (read != null)
try
read.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
if (reader != null)
try
reader.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
return sb.toString();
public static void main(String[] args)
Test2 frame = new Test2();
frame.setSize(400, 400);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
参考技术A 写了一个例子,你可以看一下。该例子可以读取txt文件并显示在文本框中,也可以读取图片文件,显示在JLabel上,有问题再追问,good luck!
import java.awt.TextArea;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
public class Test2 extends JFrame implements ActionListener
JButton button;
JButton Select;
JButton btnOK;
JTextField textfield;
JPanel p;
JFileChooser fc = new JFileChooser();
TextArea area;
public Test2()
p = new JPanel(); // 建立一个面板
this.getContentPane().add(p);// 把面板添加到框架
p.add(new JButton("文本"));// 把一个文本按钮添加到面板
textfield = new JTextField(10);
p.add(textfield); // 把一个文本框添加到面板
Select = new JButton("浏览");
p.add(Select); // 把一个浏览按钮添加到面板
Select.addActionListener(this);
btnOK = new JButton("确定");
p.add(btnOK);// 把一个确定按钮添加到面板
btnOK.addActionListener(this);
public void actionPerformed(ActionEvent e)
// 当按下选择按钮,打开一个文件选择,文本框显示文件路径
if (e.getSource() == Select)
int intRetVal = fc.showOpenDialog(this);
if (intRetVal == JFileChooser.APPROVE_OPTION)
textfield.setText(fc.getSelectedFile().getPath());
else if (e.getSource() == btnOK) // 当按下确定按钮,生成一个新框架,框架里面有一个文本域,显示打开文件的内容
JFrame f = new JFrame();
f.setSize(400, 400);
f.setLocationRelativeTo(null);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
String extensionName = getExtensionName(textfield.getText());
if ("txt".equals(extensionName))
f.setTitle("显示文本");
area = new TextArea();
//获取文本值
String text = readTxt(textfield.getText());
area.setText(text);
f.add(area);
f.setVisible(true);
else if ("jpg".equals(extensionName) || "png".equals(extensionName) || "gif".equals(extensionName))
f.setTitle("显示图片");
Icon img = new ImageIcon(textfield.getText());
JLabel label = new JLabel(img);
//添加滚动条
JScrollPane jsp = new JScrollPane(label);
f.add(jsp);
f.setVisible(true);
else
JOptionPane.showMessageDialog(null, "请选择txt/jpg/png/gif格式的文件!");
/**
* @Description:获取文件后缀名
* @param filename
* @return
* @throws
*/
private String getExtensionName(String filename)
if ((filename != null) && (filename.length() > 0))
int dot = filename.lastIndexOf('.');
if ((dot > -1) && (dot < (filename.length() - 1)))
return filename.substring(dot + 1);
return filename;
/**
* @Description:读取文件
* @param path - 文件地址
* @return
* @throws
*/
private String readTxt(String path)
if (path == null || "".equals(path))
return "";
StringBuffer sb = new StringBuffer();
File file = new File(path);
InputStreamReader read = null;
BufferedReader reader = null;
try
read = new InputStreamReader(new FileInputStream(file), "gb2312");
reader = new BufferedReader(read);
String line;
while ((line = reader.readLine()) != null)
sb.append(line);
sb.append("\n");
catch (UnsupportedEncodingException e)
e.printStackTrace();
catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
finally
if (read != null)
try
read.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
if (reader != null)
try
reader.close();
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
return sb.toString();
public static void main(String[] args)
Test2 frame = new Test2();
frame.setSize(400, 400);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
参考技术B JFileChooser jfc =new JFileChooser(new File("C:\\DDDDData\\MyBs\\SaveTest"))
这样来创建jfc实例就可以设置默认路径了~
把TextFiled的实例引用写到你注释的位置,然后调用相应的set就可以了 参考技术C 无语了,这个破知道,提交代码不过,改成11,就成功了!代码提交中 参考技术D 不好意思,这个真心不会,毕竟现在很少用java来做界面了!
java图形化编程-gui-JFrame疫苗接种系统
1.功能模块
1.1登陆模块
1.1.1思路:利用JFrame弹出一个登陆界面,用户输入admin和123456表示正确否则登陆失败,给登陆按钮绑定一个点击事件(得到用户输入的内容进行比对如果正确就弹出信息展示模块的JFrame界面-VaccineJframe),给取消按钮绑定事件将两个文本框的内容置空。
1.1.2核心代码:
位置:/yimiao/src/com/jiefan/Application.java
package com.jiefan;
import java.awt.Color;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import com.jiefan.jframe.VaccineJframe;
public class Application extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
private JTextField username;//文本框
private JPasswordField password;//密码框
private JLabel label0;//标题
private JLabel label1;//用户名
private JLabel label2;//密码
private JButton loginButton;//登陆按钮
private JButton cancelButton;//取消按钮
/**
* 初始化窗口
*/
public Application() {
// 设置容器为空布局,绝对定位
this.setLayout(null);
// 创建标题字体对象
Font font = new Font("微软雅黑", Font.BOLD, 25);
// 创建颜色对象
Color color = new Color(128, 200, 128);
// 登陆界面标签
label0 = new JLabel("登陆界面");
label0.setBounds(200, 50, 150, 50);
label0.setFont(font);
label0.setForeground(color);
// 用户名标签
label1 = new JLabel("用户名:");
label1.setBounds(110, 110, 100, 20);
// 密码标签
label2 = new JLabel("密码:");
label2.setBounds(110, 160, 100, 20);
// 创建组件
username = new JTextField();
username.setBounds(180, 110, 200, 20);
// 密码框
password = new JPasswordField();
password.setBounds(180, 160, 200, 20);
//登陆按钮
loginButton = new JButton("登陆");
loginButton.setBounds(205, 200, 60, 20);
loginButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if(username.getText().equals("admin") && String.valueOf(password.getPassword()).equals("123456")) {
JOptionPane.showMessageDialog(null, "登陆成功");
//跳转到查看所有的疫苗界面(隐藏当前窗体)
Application.this.setVisible(false);//隐藏当前窗体
new VaccineJframe();
}else {
JOptionPane.showMessageDialog(null, "账号密码错误-默认账号admin密码123456");
}
}
});
//取消按钮
cancelButton = new JButton("取消");
cancelButton.setBounds(265, 200, 60, 20);
cancelButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
username.setText("");
password.setText("");
}
});
// 将组件加入到容器中
this.add(username);
this.add(password);
this.add(label0);
this.add(label1);
this.add(label2);
this.add(loginButton);
this.add(cancelButton);
// 设置标题
this.setTitle("疫苗管理系统");
// 设置窗口的关闭策略
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
// 设置窗口大小
this.setSize(500, 300);
// 隐藏标题栏
this.setUndecorated(false);
// 设置不可调整窗口大小
this.setResizable(true);
// 设置窗口居中,放在窗口大小后面,null表示桌面
this.setLocationRelativeTo(null);
// 将窗口设置为显示,要写在最后一句
this.setVisible(true);
}
public static void main(String[] args) {
new Application();
}
}
1.1.3运行效果:
1.2信息展示模块(从txt文件中读取)
1.2.1思路:从D盘下的txt文件用io流读取出来,并封装成list用jtable组件展示到界面上
1.2.2核心代码 :
位置1:/yimiao/src/com/jiefan/dao/VaccineDao.java
//查询所有的
public List<Vaccine> getAll(){
try {
List<Vaccine> vs=read.getList();//read是我自己封装的工具类
return vs;
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
上面的read是我自己封装的工具类(专门用来读文件的) 核心代码如下:
位置2:/yimiao/src/com/jiefan/tools/Read.java
/**
* 从txt文件中读取疫苗接种信息
* @return
* @throws IOException
*/
public List<Vaccine> getList() throws IOException{
List<Vaccine> vaccines=new ArrayList<Vaccine>();
FileReader fr = new FileReader(Config.filePath);
BufferedReader br = new BufferedReader(fr);
String line = br.readLine();
for (int i = 0; line != null; i++) {
line = br.readLine();
String[] lineArr = null;
if (line != null) {
lineArr = line.split(" ");
Vaccine v=new Vaccine();
v.setId(Integer.valueOf(lineArr[0]));
v.setVname(lineArr[1]);
v.setUname(lineArr[2]);
v.setVdate(lineArr[3]);
v.setPhone(lineArr[4]);
v.setUnit(lineArr[5]);
vaccines.add(v);
}
}
br.close();
fr.close();
return vaccines;
}
12.3运行效果:
1.3新增记录模块(并更新txt)
1.3.1思路:点击新增按钮弹出一个新的窗体,里面让用户输入一些必要信息(必填的和需要正则验证的都要做)。最后点击添加的时候保存到txt文件中(在文件内容末尾换行追加一行,每个字段之间空格隔开)。隐藏添加界面打开信息展示界面(重新从txt读取一遍)。
1.3.2核心代码
位置1:/yimiao/src/com/jiefan/dao/VaccineDao.java
//增
public void addV(Vaccine v) {
List<Vaccine> vs=getAll();
if(v.getId() ==null) {
if(vs!=null&&vs.size()>0)v.setId(vs.get(vs.size()-1).getId()+1);
else v.setId(1);
}
write.appendV(v);//write是我自己定义的一个工具类-专门在最后一条记录追加
}
位置2:write工具类:/yimiao/src/com/jiefan/tools/Write.java
/**
* 新增一行疫苗信息数据
* @param v
*/
public void appendV(Vaccine v) {
BufferedWriter out=null;
//最后追加一行
try {
out=new BufferedWriter(new OutputStreamWriter(new FileOutputStream(Config.filePath, true)));
out.write("\\r\\n"+v.getId()+" "+v.getVname()+" "+v.getUname()+" "+v.getVdate()+" "+v.getPhone()+" "+v.getUnit());
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally {
try {
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
1.3.3运行效果
在这里插入图片描述
1.4删除记录(含多选删除并更新txt)
1.5修改记录(并更新txt)
1.6多条件查询
以上是关于java中JFrame按钮添加事件,选择路径放到文本框里面的主要内容,如果未能解决你的问题,请参考以下文章
如何向java jframe中添加下拉列表 按钮 文本框 最后把信息存储在文件里