标签:
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()); // JLabel picture = new JLabel("pictureURL"); // add( picture); // 按钮初始化 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()); } }
《Java程序设计》第16周周四:GUI编程及文件对话框的使用
标签:
原文地址:http://blog.csdn.net/u013910357/article/details/46634183