Search code examples
javaswingjtablejscrollpanemessagedialog

How to make java message dialog bigger?


Im currently using the following code

tableModel.setDataVector(data, columnNames);
jTable2 = new JTable(tableModel);        
JOptionPane.showMessageDialog(null, new JScrollPane(jTable2));

and when I execute it, the resulting size looks like below

enter image description here

How can I make message dialog bigger, so that we can see the column headings? I want to remove those '...'

Thanks!


Solution

  • Set a preferredSize to the JScrollPane ?