[JAVA] How do I set or change JTable column width?
private JScrollPane getExceptionDBTable(){ // ScrollPane for Table JScrollPane mExceptionListScroll = new JScrollPane(); // Table final JTable mTable = new JTable(); mTable.setBackground(Color.WHITE); mTable.setFillsViewportHeight(true); mTable.setAutoResizeMode(JTable.AUTO_RESIZE_OFF); mTable.setBackground(Color.WHITE); mExceptionListScroll.setViewportView(mTable); mExceptionListScroll.setBound..
2015. 2. 25. 20:43