打开JFileChooser并返回所选文件的Swing ActionListener
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打开JFileChooser并返回所选文件的Swing ActionListener相关的知识,希望对你有一定的参考价值。
A Swing ActionListener that opens a JFileChooser and returns the selected file.
/** This action creates and shows a modal save-file dialog. */ this.parent = parent; } // Show dialog; won't return until dialog is closed: chooser.showSaveDialog(parent); // Get the selected file if (file != null) { handleFile(file); } } } ... myButton.addActionListener(new FileAction(getMainPanel()) { // do whatever you want with the file... } });
以上是关于打开JFileChooser并返回所选文件的Swing ActionListener的主要内容,如果未能解决你的问题,请参考以下文章