0

我不确定这个问题的标题是什么,所以希望没有人太困惑......

我有一个按钮,单击该按钮时,会将 Player 对象的 ArrayList 中的每个“播放器”对象的属性添加到 JTable。目前,我的 ArrayList 中有 500 个“玩家”,我想显示 100 行(因为似乎有 100 行的限制 - 如果我知道如何为下一个/前 10 行做按钮,我会做那)。当转到 JTabbedPane 中的相应选项卡并单击按钮时,我只看到 10 行数据 - 我希望看到 100 行数据并向下滚动以查看其余数据。我已将 JTable 放在 JScrolledPane 中。

这是我按钮的 actionListener 中的代码:

private void getAllPlayersBtnActionPerformed(java.awt.event.ActionEvent evt) {                                                 

            for(int i = 0; i < players.size(); i++)
            {
                playersDataTable.setValueAt(players.get(i).getPlayerID(), i, 0);
                playersDataTable.setValueAt(players.get(i).getPlayerName(), i, 1);
                playersDataTable.setValueAt(players.get(i).getCountryName(), i, 2);
                playersDataTable.setValueAt(players.get(i).getCareerSpan(), i, 3);
                playersDataTable.setValueAt(players.get(i).getMatchesPlayed(), i, 4);
                playersDataTable.setValueAt(players.get(i).getInningsPlayed(), i, 5);
                playersDataTable.setValueAt(players.get(i).getBallsBowled(), i, 6);
                playersDataTable.setValueAt(players.get(i).getRunsConceded(), i, 7);
                playersDataTable.setValueAt(players.get(i).getWicketsTaken(), i, 8);
                playersDataTable.setValueAt(players.get(i).getBowlingAverage(), i, 9);
                playersDataTable.setValueAt(players.get(i).getEconomyRate(), i, 10);
                playersDataTable.setValueAt(players.get(i).getStrikeRate(), i, 11);
                playersDataTable.setValueAt(players.get(i).getFiveWicketsInnings(), i, 12);

            }
    } 

编辑:这里有一些额外的代码可能会有所帮助。大部分代码是由 NetBeans 自动创建的——我尝试进行一些自定义编辑。

我的 scrolledPane 的代码

tableScrollPane = new javax.swing.JScrollPane();

tableScrollPane.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);

tableScrollPane.setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));

// Code of sub-components and layout - not shown here

// Code adding the component to the parent container - not shown here

JTable 的代码:

playersDataTable = new javax.swing.JTable();

playersDataTable.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(153, 204, 255), 2));

playersDataTable.setModel(new javax.swing.table.DefaultTableModel(
    new Object [][] {
        //NOTE: There were 100 of these, but deleted some to truncate this code
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null},
        {null, null, null, null, null, null, null, null, null, null, null, null, null}

    },
    new String [] {
        "ID", "Player Name", "Country", "Career Span", "Matches Played", "Innings Played", "Balls Bowled", "Runs Conceded", "Wickets Taken", "Bowling Average", "Economy Rate", "Strike Rate", "5 Wickets/Innings"
    }
) {
    Class[] types = new Class [] {
        java.lang.Integer.class, java.lang.String.class, java.lang.String.class, java.lang.String.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Integer.class, java.lang.Double.class, java.lang.Double.class, java.lang.Double.class, java.lang.Integer.class
    };
    boolean[] canEdit = new boolean [] {
        false, false, false, false, false, false, false, false, false, false, false, false, false
    };

    public Class getColumnClass(int columnIndex) {
        return types [columnIndex];
    }

    public boolean isCellEditable(int rowIndex, int columnIndex) {
        return canEdit [columnIndex];
    }
});

playersDataTable.setPreferredSize(new java.awt.Dimension(700, 160));

playersDataTable.getTableHeader().setResizingAllowed(false);
playersDataTable.getTableHeader().setReorderingAllowed(false);

playersDataTable.setUpdateSelectionOnSort(false);

tableScrollPane.setViewportView(playersDataTable);

playersDataTable.getColumnModel().getColumn(0).setResizable(false);
playersDataTable.getColumnModel().getColumn(0).setPreferredWidth(20);
playersDataTable.getColumnModel().getColumn(1).setResizable(false);
playersDataTable.getColumnModel().getColumn(2).setResizable(false);
playersDataTable.getColumnModel().getColumn(3).setResizable(false);
playersDataTable.getColumnModel().getColumn(3).setPreferredWidth(50);
playersDataTable.getColumnModel().getColumn(4).setResizable(false);
playersDataTable.getColumnModel().getColumn(4).setPreferredWidth(60);
playersDataTable.getColumnModel().getColumn(5).setResizable(false);
playersDataTable.getColumnModel().getColumn(5).setPreferredWidth(60);
playersDataTable.getColumnModel().getColumn(6).setResizable(false);
playersDataTable.getColumnModel().getColumn(6).setPreferredWidth(50);
playersDataTable.getColumnModel().getColumn(7).setResizable(false);
playersDataTable.getColumnModel().getColumn(7).setPreferredWidth(60);
playersDataTable.getColumnModel().getColumn(8).setResizable(false);
playersDataTable.getColumnModel().getColumn(8).setPreferredWidth(50);
playersDataTable.getColumnModel().getColumn(9).setResizable(false);
playersDataTable.getColumnModel().getColumn(9).setPreferredWidth(55);
playersDataTable.getColumnModel().getColumn(10).setResizable(false);
playersDataTable.getColumnModel().getColumn(10).setPreferredWidth(50);
playersDataTable.getColumnModel().getColumn(11).setResizable(false);
playersDataTable.getColumnModel().getColumn(11).setPreferredWidth(35);
playersDataTable.getColumnModel().getColumn(12).setResizable(false);

该按钮名为 getAllPlayersBtn,players.size() 等于 500。

我在 StackOverFlow 上看到过与此类似的问题,但似乎无法按照我想要的方式进行调整。我正在使用 NetBeans GUI Builder 为程序构建 GUI - 因为我是这个 GUI 构建器的新手,所以我不确定要在此处显示每个人的哪些代码(除了前面发布的代码片段)。如果需要更多代码,请告诉我到底需要什么。

我在 GitHub 上有我的项目,地址为https://github.com/rattfieldnz/Java_Projects/tree/master/PCricketStats,供任何想要运行它并为我提供帮助的人使用。应用程序的主类是“AppInterfac.java”,JTable 位于“Stats Involving Multiple Players”选项卡中。


这很可能与这个特定问题无关,但我想我会在这里简单地提到它......理想情况下,我希望有一个“下一个”按钮,显示很多 10 行,以及一个“上一个”按钮可以去回到很多 10。我已经看到了很多不同的方法来做到这一点我很困惑,所以我希望有人看看我的特殊情况并指导我如何实现这些按钮。

4

1 回答 1

1

您应该通过模型添加行,而不是通过表格设置单元格值。

你有两个选择。您可以创建一个新模型,将所有新行添加到其中,并在完成后将其应用到表中。

您可以从表中获取模型,清除它并添加所有新行。

这将取决于基础表模型

于 2013-05-23T10:39:06.583 回答