error message with JButton and JFileChooser
问题 I want to have a button with a JFileChooser action. This is the code that I wrote: public class Main { private static String fullPath; private JFileChooser inputFile; public static void main(String args[]) throws FileNotFoundException, IOException { try { GridBagConstraints gbc = new GridBagConstraints(); JButton inputButton = new JButton("Browse input file"); myPanel.add(inputButton, gbc); inputButton.addActionListener(new ActionListener() { public void ActionPerformed(ActionEvent e) {