if(ee.getSource()==bt1) {
            try{
                st1="";
                st2=tf1.getText().trim();
                st3=new String(pf.getPassword());
                if(st2!=st1&&st3!=st1) {
                    st4="select*from Landing where 管理员名='"+st2+"'and 密码='"+st3+"'";
                    rs1=stmt.executeQuery(st4);
                    if(rs1.next()) {
                        szfrm app=new szfrm();
                        app.setExtendedState(JFrame.MAXIMIZED_BOTH);//让窗口起动后最大化
                        this.dispose();
                        
                        
                    } else {JOptionPane.showMessageDialog(null,"你不是合法用户");tf1.setText("");
                    pf.setText("");}
                }else{JOptionPane.showMessageDialog(null,"输入格式不正确");}
                rs1.close();
            } catch(Exception e10) {
                System.out.println(e10.toString());
            }
        } st4="select*from Landing where 管理员名='"+st2+"'and 密码='"+st3+"'";这句要被SQL注入式攻击换成用PreparedStatement写,该如何写啊!