作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何在写入所有行之前清除表格?每次我敲这段代码,数据都会完全不同:
graphicsMemoryTable.setRedraw(false);
int count = 0;
for(int i=0; i<graphicsMemory.size() && count<1000; i+=8,count++)
{
TableItem item = new TableItem(graphicsMemoryTable, SWT.NONE);
item.setText(graphicsMemory.get(i).toString());
item.setText(1,graphicsMemory.get(i+1).toString());
item.setText(2,graphicsMemory.get(i+2).toString());
item.setText(3,graphicsMemory.get(i+3).toString());
item.setText(4,graphicsMemory.get(i+4).toString());
item.setText(5,graphicsMemory.get(i+5).toString());
item.setText(6,graphicsMemory.get(i+6).toString());
item.setText(7,graphicsMemory.get(i+7).toString());
}
graphicsMemoryTable.setRedraw(true);
编辑:作为引用,调用 removeAll()
对我有用,调用 clearAll 却没有
最佳答案
Table
的
removeAll()
方法将删除表格中的所有元素。这是 javadoc;
public void removeAll()
Removes all of the items from the receiver.
关于Java SWT : Clear all items in a table before writing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37720041/
我是一名优秀的程序员,十分优秀!