我想在TableItem中交换两个文本。首先,设置文本,然后检查选择了哪个TableItem,将它们保存在2个变量中并覆盖它们。但是我得到了这些字符串,而不是我想要的消息:

[Lorg.eclipse.swt.widgets.TableItem;@6fadae5d

@之后的部分总是不同的,我想它是一个ID或其他名称,但是我找不到解决方案。这是代码片段。 groupsList是一个String数组。

    for (int i = 1; i <= logic.amountOfGroups; i++) {

        Table table = new Table(shell, SWT.MULTI | SWT.BORDER);
        table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
        for (int j = 0; j < logic.personsInGroup; j++) {
            TableItem tableItem_1 = new TableItem(table, SWT.NONE);
            tableItem_1.setText(logic.groupsList.get(i - 1)[j]);
        }
        tableList.add(table);
    }


所以我将内容写到TableItems中,然后我想交换它们:

swapButton = new Button(shell, SWT.NONE);
    swapButton.setText("Swap");
    swapButton.addMouseListener(new MouseAdapter() {
        @Override
        public void mouseDown(MouseEvent e) {
            int[] playerIndices = new int[2];
            int[] groupIndices = new int[2];
            int i = 0;
            String toBeSwappedZero = "";
            String toBeSwappedOne = "";
            for (Table table : tableList) {
                if (table.getSelectionCount() == 1) {
                    if (toBeSwappedZero == "") {
                        groupIndices[0] = i;
                        playerIndices[0] = table.getSelectionIndex();
                        toBeSwappedZero = table.getSelection().toString();
                    } else {
                        groupIndices[1] = i;
                        playerIndices[1] = table.getSelectionIndex();
                        toBeSwappedOne = table.getSelection().toString();
                    }
                }
                if (table.getSelectionCount() == 2) {
                    playerIndices = table.getSelectionIndices();
                    groupIndices[0] = i;
                    groupIndices[1] = i;
                    toBeSwappedZero = table.getItem(playerIndices[0]).getText();
                    toBeSwappedOne = table.getItem(playerIndices[1]).getText();
                }
                i++;
            }
            System.out.println(toBeSwappedOne);
            tableList.get(groupIndices[0]).getItem(playerIndices[0]).setText(toBeSwappedOne);
            tableList.get(groupIndices[1]).getItem(playerIndices[1]).setText(toBeSwappedZero);
        }
    });


这是GUI java - SWT TableItem getText不返回我期望的结果-LMLPHP

最佳答案

看看MouseAdapter中的这些行:

if (table.getSelectionCount() == 1) {
    if (toBeSwappedZero == "") {
        // ...
        toBeSwappedZero = table.getSelection().toString();
    } else {
        // ...
        toBeSwappedOne = table.getSelection().toString();
    }
}


注意,Table.getSelection()返回一个TableItem对象的数组。正如@ greg-449所指出的,如果在该数组上调用[Lorg.eclipse.swt.widgets.TableItem;@XXXXXXXX,则会得到toString()

在这两种情况下,您都已经检查过仅选择了一个TableItem,因此可以安全地执行table.getSelection()[0]来访问该TableItem(或者,可以在确认存在至少一项,并且只有一项被选中)。

稍后在不相关的table.getItem(table.getSelectionIndex())语句中,您正确地获得了if文本:

table.getItem(playerIndices[0]).getText();


因此,您无需像在开始时在这两行上使用TableItem方法那样,而是要使用toString()

10-01 19:30