----------------解决方案--------------------------------------------------------
你自己去判断
你打开JFileChooser后,会返回两种int值
一种是表示你选取了,而关闭的
一种是表示你取消了,而关闭的
多看看API吧
----------------解决方案--------------------------------------------------------
就是因为API讲得太简单了,有很多地方都不会用的
----------------解决方案--------------------------------------------------------
呵呵,那就自己写DEMO程序啊,我以前学SWING的时候就是这样学的
一个一个组件玩,玩熟了,就属于你的了
----------------解决方案--------------------------------------------------------
我用getApproveButtonMnemonic()方法判断是否有返回,但是点撤消按钮都是有很多的错误出现啊,版主帮帮忙啦
----------------解决方案--------------------------------------------------------
JFileChooser chooser = new JFileChooser();
// Note: source for ExampleFileFilter can be found in FileChooserDemo,
// under the demo/jfc directory in the JDK.
ExampleFileFilter filter = new ExampleFileFilter();
filter.addExtension("jpg");
filter.addExtension("gif");
filter.setDescription("JPG & GIF Images");
chooser.setFileFilter(filter);
int returnVal = chooser.showOpenDialog(parent);
if(returnVal == JFileChooser.APPROVE_OPTION) {
System.out.println("You chose to open this file: " +
chooser.getSelectedFile().getName());
}
看看这个示例 ,判断这个filechooser是怎么返回的,只要判断它的返回int值就可以了
CANCEL_OPTION 表示取消返回的
APPROVE_OPTION表示选中返回的
如果是选中返回的,你就可以通过chooser.getSelectedFile()得到其选中的文件
否则,你就得不到,
----------------解决方案--------------------------------------------------------