请教用复选框查询的方法
在查询窗体里有很多复选框,如何根据选定的复选框进行查询呢?请教方法~~谢谢!!
----------------解决方案--------------------------------------------------------
class ActionListener =new
ActionListener()
{
public void actionPerformed(ActionEvent event)
{
if(checkbox1.isSelected()) dosth1();else dosth2();
if(checkbox2.isSelected()) dosth3();else dosth4();
}
};
ActionListener listener=new ActionListener();
checkbox1.addActionListener(listener);
checkbox2.addActionListener(listener);
----------------解决方案--------------------------------------------------------
定义一个boolean类型的变量 从第一个复选框开始判断
如果第一个为选中 那么接下来的sql语句就用...and...拼装
而如果没有选中 sql语句就为where打头
大致是这个意思 希望能对你有所帮助
祝你成功
----------------解决方案--------------------------------------------------------