1

我正在尝试使用 groovy swing builder 的 fileChooser,但没有运气。当我从 groovy 网站复制以下示例时:

def openExcelDialog  = SwingBuilder.fileChooser(dialogTitle:"Choose an excel file", 
                               id:"openExcelDialog", fileSelectionMode :         JFileChooser.FILES_ONLY, 
                               //the file filter must show also directories, in order to be able to look into them
                               fileFilter: [getDescription: {-> "*.xls"}, accept:{file-> file ==~ /.*?\.xls/ || file.isDirectory() }] as FileFilter) {

}

但我收到一条错误消息:

groovy.lang.MissingMethodException: No signature of method: static groovy.swing.SwingBuilder.fileChooser() is applicable for argument types: (java.util.LinkedHashMap, ConsoleScript19$_run_closure1) values
4

3 回答 3

6

您不能像在 SwingBuilder 之外那样使用 fileChooser。相反,您只需要使用一个普通的非swingBuilder JFileChooser。这是一个完整的工作示例:

import javax.swing.filechooser.FileFilter
import javax.swing.JFileChooser

def openExcelDialog = new JFileChooser(
                            dialogTitle: "Choose an excel file",
                            fileSelectionMode: JFileChooser.FILES_ONLY, 
                            //the file filter must show also directories, in order to be able to look into them
                            fileFilter: [getDescription: {-> "*.xls"}, accept:{file-> file ==~ /.*?\.xls/ || file.isDirectory() }] as FileFilter)

openExcelDialog.showOpenDialog()

请注意,new JFileChooserjust 以右括号结尾 - 没有尾随闭包。

于 2011-08-18T04:19:16.457 回答
3

OverZealous 的解决方案因 NPE 而失败。

Exception in thread "Basic L&F File Loading Thread" java.lang.NullPointerException
    at java.util.regex.Matcher.getTextLength(Unknown Source)
    at java.util.regex.Matcher.reset(Unknown Source)
    at java.util.regex.Matcher.<init>(Unknown Source)
    at java.util.regex.Pattern.matcher(Unknown Source)
    at org.codehaus.groovy.runtime.InvokerHelper.matchRegex(InvokerHelper.java:335)
    at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.matchRegex(ScriptBytecodeAdapter.java:722)
    at ExcelChooser2$_run_closure2.doCall(ExcelChooser2.groovy:13)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:90)
    at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:233)
    at org.codehaus.groovy.runtime.metaclass.ClosureMetaClass.invokeMethod(ClosureMetaClass.java:272)
    at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:884)
    at org.codehaus.groovy.runtime.callsite.PogoMetaClassSite.call(PogoMetaClassSite.java:39)
    at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:116)
    at FileFilter_groovyProxy.accept(Script1.groovy:7)
    at javax.swing.JFileChooser.accept(Unknown Source)
    at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread.run0(Unknown Source)
    at javax.swing.plaf.basic.BasicDirectoryModel$LoadFilesThread.run(Unknown Source)

解决方案:

老的:fileFilter: [getDescription: {-> "*.xls"}, accept:{file -> file ==~ /.*?\.xls/ || file.isDirectory() }] as FileFilter

新的:fileFilter: [getDescription: {-> "*.xls"}, accept:{file -> file.toString() ==~ /.*?\.xls/ || file.isDirectory() }] as FileFilter

[ Win7(x64)Groovy 版本:1.8.3 JVM:1.6.0_29)]

于 2011-12-18T18:24:00.630 回答
1

我认为您需要先创建一个 SwingBuilder 对象。这对我有用:

def swing = new SwingBuilder()
def dialog = swing.fileChooser(dialogTitle: "Open A File")
if (dialog.showOpenDialog() == JFileChooser.APPROVE_OPTION) {
    println dialog.selectedFile
}

在此处查看完整的属性列表。

于 2015-08-31T21:17:12.747 回答