Java - 根据列大小调整来调整表的大小

时间:2015-12-31 09:59:14

标签: java swing jtable

我有一个JTable有2列,我试图实现以下目标:
如果第一列中的单元格的值不适合单元格内部,则会看到3个结束点。在这种情况下,我想调整列和表的大小,以便长值适合,以便不更改第二列的宽度。把它想象成左边第一列的扩展。

示例代码:

/**
 * Main.
 * 
 * @param args arguments.
 */
public static void main(String[] args) {
  JFrame frame = new JFrame();
  frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  JPanel panel = new JPanel(new GridBagLayout());

  String[] columnNames = {"First Name",
    "Last Name"};
  Object[][] data = {
    {"Kathy Lathy Alberta 1234567890 11 12 13 14", "Smith"},
    {"John", "Doe"},
    {"Sue", "Black"},
    {"Jane", "White"},
    {"Joe", "Brown"}
  };


  // Create the table based on data and column names
  JTable table = new JTable(new DefaultTableModel(data, columnNames));
  // Set an initial size and add it to the main panel
  table.setSize(300, 300);
  panel.add(table);

  // Compute the width of the first column, based on the longest value
  int width = 0, row = 0;
  for (row = 0; row < table.getRowCount(); row++) {
      TableCellRenderer renderer = table.getCellRenderer(row, 0);
      Component comp = table.prepareRenderer(renderer, row, 0);
      width = Math.max (comp.getPreferredSize().width, width);
  }

  // Compute the value to be added to the width of the table
  int initialWidth = table.getColumnModel().getColumn(0).getPreferredWidth();
  int delta = width - initialWidth;
  // Try to resize the table and the first column
  table.setPreferredSize(new Dimension(table.getPreferredSize().width + delta, table.getHeight()));
  table.getColumnModel().getColumn(0).setPreferredWidth(width);

  frame.getContentPane().add(panel);
  panel.setLayout(new BorderLayout());
  panel.setPreferredSize(table.getPreferredSize());
  frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
  frame.pack();
  frame.setLocation(800, 300);
  frame.setVisible(true);
}

这是怎么回事:

enter image description here

1 个答案:

答案 0 :(得分:2)

几个问题:

您可以将面板的布局管理器设置两次,首先设置为GridBagLayout,然后设置为BorderLayout。在开始向面板添加组件之前,应该设置一次布局管理器。

width = Math.max (comp.getPreferredSize().width, width);

首选宽度太小,因为该表还包括列宽中的单元间间距量。对于一个简单的解决方案,您可以使用:

width = Math.max (comp.getPreferredSize().width + 1, width);

您可以查看Table Column Adjuster,了解我用于调整列宽的更一般的代码。

// Compute the value to be added to the width of the table
//  int initialWidth = table.getColumnModel().getColumn(0).getPreferredWidth();
//  int delta = width - initialWidth;
// Try to resize the table and the first column
//  table.setPreferredSize(new Dimension(table.getPreferredSize().width + delta, table.getHeight()));
table.getColumnModel().getColumn(0).setPreferredWidth(width);

请勿尝试使用表格的首选宽度。只需设置TableColumn的宽度,让表格计算自己的宽度。