g sql){Р try{Р Statement stmt=con.createStatement();Р stmt.executeQuery(sql);Р }catch(Exception e){}Р }Р /**Р * 用于获得执行SQL语句的PreparedStatement(预处理)对象Р */Р public PreparedStatement getPreparedStatement(String sql){Р try{Р PreparedStatement pstmt=con.prepareStatement(sql);Р return pstmt;Р }Р catch(Exception e){}Р return null;Р }Р /**Р * 关闭连接Р */Р public void closeCon(){Р try{Р this.con.close();Р }catch(Exception e){Р e.printStackTrace(); } }Р}Р4.2 中文乱码处理的JavaBean的编写Р在JSP开发中,经常出现乱码问题,我们可以指定编码方式,以消除乱码。Р.mingri.chinese;Рimport java.io.*;Рpublic class ToChineseР{Р public String trans(String chi){Р String result=null;Р byte temp[];Р try{Р temp=chi.getBytes("iso-8859-1");Р result=new String(temp);Р }Р catch(UnsupportedEncodingException e){Р System.out.println(e.toString());Р }Р return result;Р }Р }