Search code examples
javaswingindexoutofboundsexceptionlook-and-feeljfilechooser

Change to Look and Feel of customized JFileChooser raises an exception


When i open the dialog box through CustomizedJFileChooser. JfileChooser look and Feel not good. so, for look and feel i am adding the code

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());

it raise the exception.

Here is my code,

    public class FileChooser extends JFrame {

    private JPanel contentPane;
    MyFileChooser jc;
    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    UIManager.setLookAndFeel(
                            UIManager.getSystemLookAndFeelClassName());
                    FileChooser frame = new FileChooser();
                    frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }
        public FileChooser() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        contentPane = new JPanel();
        contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
        contentPane.setLayout(new BorderLayout(0, 0));
        setContentPane(contentPane);
        jc = new MyFileChooser();
        JButton btnOpen = new JButton("open");
        contentPane.add(btnOpen, BorderLayout.NORTH);

        btnOpen.addActionListener(new ActionListener() {

            public void actionPerformed(ActionEvent e) {

                int returnVal = jc.showOpenDialog(FileChooser.this);

            }
        });
          pack();
         }

         }
         class MyFileChooser extends JFileChooser{
         public MyFileChooser() {
         JComboBox comboBox = new JComboBox();
          comboBox.setModel(new DefaultComboBoxModel(new String[] { "text", "binary" }));

          JPanel panel1 = (JPanel)this.getComponent(3);
        JPanel panel2 = (JPanel) panel1.getComponent(3);

           Component c1=panel2.getComponent(0);
        Component c2=panel2.getComponent(1);
        panel2.removeAll();
        panel2.add(new JLabel("Document Name: "));
        panel2.add(comboBox);
        panel2.add(c1);
        panel2.add(c2);
   }
}

Here stack trace of excetpion:

java.lang.ArrayIndexOutOfBoundsException: No such child: 3
at java.awt.Container.getComponent(Container.java:327)
at MyFileChooser.<init>(FileChooser.java:62)
at FileChooser.<init>(FileChooser.java:41)
at FileChooser$1.run(FileChooser.java:27)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:727)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:688)
at java.awt.EventQueue$3.run(EventQueue.java:686)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:697)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

Thank you.


Solution

  • The Component List has a zero-based index. Modify these two lines like below and it works. MyFileChooser has panel1 at index 2 and panel1 has the other panel also at index 2.

    JPanel panel1 = (JPanel) this.getComponent(2);
    JPanel panel2 = (JPanel) panel1.getComponent(2);
    

    You forgot to add the third component to panel2. The combobox is teared but you can fix its height afterwards.

    My mistake, I forgot to add the panel containing the buttons. I have also added the combobox to its own panel and now it doesn't get teared anymore. Should work fine now.

    class MyFileChooser extends JFileChooser {
    public MyFileChooser() {
        JComboBox comboBox = new JComboBox();
        comboBox.setModel(new DefaultComboBoxModel(new String[]{"text", "binary"}));
    
        JPanel panel1 = (JPanel) this.getComponent(2);
          JPanel panel2 = (JPanel) panel1.getComponent(2);
    
          Component c1=panel2.getComponent(0);
          Component c2=panel2.getComponent(1);
          Component c3=panel2.getComponent(2);
          Component c4=panel2.getComponent(3);
          Component c5=panel2.getComponent(4);
    
          JPanel comboboxPanel = new JPanel();
          comboboxPanel.setLayout(new FlowLayout());
          comboboxPanel.add(new JLabel("Document Name: "));
          comboboxPanel.add(comboBox);
    
          panel2.removeAll();
          panel2.add(comboboxPanel);
          panel2.add(Box.createRigidArea(new Dimension(5,5)));
          panel2.add(c1);
          panel2.add(c2);
          panel2.add(c3);
          panel2.add(c4);
          panel2.add(c5);
    }
    

    }