《Java程序设计》第16周周四:GUI编程及文件对话框的使用

<pre name="code" class="java">package com.liang;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;
public class FileChooser extends JFrame implements ActionListener{
	JButton open=null; 

JTextField jtfPath = null;
public static void main(String[] args)
{
	new FileChooser();
	}    
public FileChooser()
{
	this.setLayout(new FlowLayout());
	// 按钮初始化
	open=new JButton("open");
	// 添加监听
	open.addActionListener(this);
	// 把按钮添加到JFrame容器中
	this.add(open);
	// 添加文本框控件
	jtfPath = new JTextField("选择的文件",40);
	jtfPath.setEditable(false);
	// 不可编辑
	jtfPath.setHorizontalAlignment(JTextField.CENTER);
	// 居中
	this.add(jtfPath);
	// 设置JFrame的大小,可显示,默认关闭按钮
	this.setBounds(400, 200, 700, 500);
	this.setVisible(true);
	this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
	}    @Override    public void actionPerformed(ActionEvent e) {
		// TODO Auto-generated method stub
		JFileChooser jfc=new JFileChooser();
		jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES );
		jfc.showDialog(new JLabel(), "选择");
		File file=jfc.getSelectedFile();
		if(file.isDirectory()){
			System.out.println("文件夹:"+file.getAbsolutePath());
			}else if(file.isFile()){ 
				System.out.println("文件:"+file.getAbsolutePath());
				}
		System.out.println(jfc.getSelectedFile().getName());
		// 把文件路径显示在文本框中
		jtfPath.setText(file.getAbsolutePath());
		}
	} 



                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值