JFileChooser的问题
当打开一个JFileChooser后,如果什么都不选,直接关闭的话,会有很多的错误出现,要怎样避免这种情况啊
你自己去判断
你打开JFileChooser后,会返回两种int值
一种是表示你选取了,而关闭的
一种是表示你取消了,而关闭的
多看看API吧
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()得到其选中的文件
否则,你就得不到,