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.
我有jComboBox并且我想jComboBox通过使用来刷新jComboBox.removeAllItems()。但它会删除所有可用的项目,jComboBox包括Select默认值。我想Select始终在 jComboBox 上保持价值。
jComboBox
jComboBox.removeAllItems()
Select
注意:我在互联网上搜索但没有找到我想要的确切解决方案。
谢谢。
你知道 at 的值0 index应该是多少。您可以执行jComboBox.removeAllItems()然后添加Select回来。
0 index
JComboBox<String> cb = new JComboBox<String>(); String tmp = cb.getItemAt(0); cb.removeAll(); cb.addItem(tmp);
其中 0 是您要保存的索引。