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.
我已经使用 net beans 创建了一个 jframe 并向其中添加了组合框。我只想从我的一个 sql 表中加载值。我需要将该表中的整个字段加载到组合框。什么是最简单的代码。(或netbeans中的图形方法)。
谢谢你!
您可以使用Vector<T> orComboBoxModel对象。看看JCombobox教程。
Vector<T>
ComboBoxModel
PS:您应该必须使用mysql JDBC 连接器 API来获取数据库结果。