我在尝试使表格滚动时遇到了麻烦。只是不会。我查看了其他堆栈答案并尝试了它们,但是它们没有用;我不确定是否与这些解决方案有冲突。

tableModel = new TableModel(); //Custom Table Model
table = new JTable();
table.setBorder(null);
table.setFillsViewportHeight(true);
table.setModel(tableModel);

JScrollPane tblScrollPane = new JScrollPane(table);
tblScrollPane.setBorder(new EtchedBorder(EtchedBorder.LOWERED, null, null));
tblScrollPane.setBounds(245, 17, 560, 425);
frmServerAdministration.getContentPane().add(tblScrollPane);


编辑:更多信息

因此,将打开一个窗口,它是服务器程序。客户端程序连接到服务器,当它们连接时,在我的表模型类中触发了一个方法,该方法将新行添加到表中。 (我可以看到行)然后在该方法的末尾调用另一个,但ScrollPane中没有任何变化。我需要重新粉刷吗? --

Server.updateTableScroll();

public static void updateTableScroll() {
    System.out.println("Here"); //NOTE: I do see this printed out
    int last = table.getModel().getRowCount() - 1;
    Rectangle r = table.getCellRect(last, 0, true);
    table.scrollRectToVisible(r);
}


编辑2:想法

因此,在Eclipse中,我使用Window Builder来制作GUI,下面的for循环将显示带有滚动条的表!但是,当我在另一点运行相同的addClient()方法时,滚动条将不会出现。

public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
            try {
                Server window = new Server();
                window.frmServerAdministration.setVisible(true);
                for(int i = 0; i < 20; i++){
                    tableModel.addClient(i, String.valueOf(i));
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    });
}

最佳答案

代替setBounds(),改写getPreferredScrollableViewportSize()(如建议的here)和pack()封闭的顶层容器。另外,API作者“建议您将组件放在JPanel中,并在JPanel上设置边框。”

附录:在JTable侦听其TableModel时,请验证是否从模型中触发了正确的事件。如果扩展AbstractTableModel,则fireTableXxx()方法之一将是合适的。

关于java - JTable将无法在JScrollPane中滚动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18069673/

10-09 19:32