Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含多行数据的星云网格。
如何循环遍历每一行以从中捕获数据?
谢谢你。
我只是在自己努力寻找自己问题的答案时遇到了这个问题。无论如何,循环通过一个 nebulagrids 行(或网格项,因为它们被称为)可以这样完成:
GridItem[] itemList = grid.getItems(); for(GridItem item:itemList){ System.out.println(item.getText()); }
根据您要从项目中检索的数据,您必须将 item.getText() 替换为您自己喜欢的内容。