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.
我有两个类。一个类生成一个带有从 MySql 数据库中检索的值的 PIE 图表。我们为此触发一个 SQL 查询。我还有一个带有组合框的 GUI。我希望从组合框中提取值,然后将这些提取的值嵌入到 SQL 查询中。
例如。在 GUY 中,如果用户从组合框中选择年份为 2012,并且从不同的组合框中选择类别作为角色带,我需要在运行时将这些值放入 sql statemnt 中。这可能吗,请帮忙!
comboBox.getValue();将给出为组合框设置的当前值,如果您想在组合框值更改时执行查询,则向其添加监听器。
comboBox.getValue();