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

Posted jhcelue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GUI编程及文件对话框的使用相关的知识,希望对你有一定的参考价值。

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 button的自己定义文件选择器对话框
		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编程及文件对话框的使用的主要内容,如果未能解决你的问题,请参考以下文章

python 打开文件对话框 filedialog tkinter GUI 编程

Pyqt5 - 文件对话框GUI关闭后无法运行代码

QT GUI编程

PyQt5学习笔记2-GUI编程基础-2

Java基础——GUI编程

如何以编程方式使用 sudo? IE。将 sudo 集成到我的 GUI 中