码迷,mamicode.com
首页 > 其他好文 > 详细

GUI编程及文件对话框的使用

时间:2015-07-03 15:59:07      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

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;



@SuppressWarnings("serial")
public class Filechooser extends JFrame implements ActionListener{

	JButton open=null;
	public static void main (String[] args){
		new Filechooser();//构造一个指向用户的默认目录Filechooser
	}
	public Filechooser(){
		open=new JButton("打开");
		this.add(open);
		this.setBounds(100,100,100,100);
		this.setVisible(true);
		this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		open.addActionListener(this);
	}
	public void actionPerformed(ActionEvent e){
		JFileChooser j=new JFileChooser();
		j.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);//设置Filechooser
		j.showDialog(new JLabel(),"选择");// 弹出具有自定义 approve 按钮的自定义文件选择器对话框
		File file=j.getSelectedFile();
			if(file.isDirectory()){
				System.out.println("文件夹        "+file.getAbsolutePath());
				
			}else if(file.isFile()){
				System.out.println("文件夹        "+file.getAbsolutePath());
			}
			System.out.println(j.getSelectedFile().getName());
		
	}
}
<img src="http://img.blog.csdn.net/20150703133924135?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvYXlha2FrYXpl/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast" alt="" />

版权声明:本文为博主原创文章,未经博主允许不得转载。

GUI编程及文件对话框的使用

标签:

原文地址:http://blog.csdn.net/ayakakaze/article/details/46740721

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!