groovy swing builderのfileChooserを使おうとしています。 私はGroovyのWebサイトから、次の例をコピーする場合:Groovy Swing buider fileChooser
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) {
}
をしかし、私はエラーメッセージを得た:あなたはSwingBuilderの外にそのようにファイルチューザを使用することはできません
groovy.lang.MissingMethodException: No signature of method: static groovy.swing.SwingBuilder.fileChooser() is applicable for argument types: (java.util.LinkedHashMap, ConsoleScript19$_run_closure1) values