word_check.jsp
上传用户:shjgzm
上传日期:2017-08-31
资源大小:2757k
文件大小:2k
源码类别:

Ajax

开发平台:

Java

  1. <%@ page contentType="text/plain; charset=UTF-8"%>
  2. <%@ page language="java"%>
  3. <%@ page import="java.sql.*,ajax.db.DBUtils"%>
  4. <%!
  5.     //检查数据库中是否存在对应单词
  6.     boolean checkWord(String word) {
  7.         boolean result = false;                 //保存检查结果,初始为false
  8.         String detail = null;                   //存放信息信息
  9.         String sql = "select id from words where word = ?";   //定义查询数据库的SQL语句
  10.         Connection conn = null;                 //声明Connection对象
  11.         PreparedStatement pstmt = null;         //声明PreparedStatement对象
  12.         ResultSet rs = null;                    //声明ResultSet对象
  13.         try {
  14.             conn = DBUtils.getConnection();     //获取数据库连接
  15.             pstmt = conn.prepareStatement(sql); //根据sql创建PreparedStatement
  16.             pstmt.setString(1, word);           //设置参数
  17.             rs = pstmt.executeQuery();          //执行查询,返回结果集
  18.             if (rs.next()) {
  19.                 result = true;                  //查询结果集存在时,result为true
  20.             }
  21.         } catch (SQLException e) {
  22.             System.out.println(e.toString());
  23.         } finally {
  24.             DBUtils.close(rs);                  //关闭结果集
  25.             DBUtils.close(pstmt);               //关闭PreparedStatement
  26.             DBUtils.close(conn);                //关闭连接
  27.         }
  28.         return result;                          //返回检查结果
  29.     }
  30. %>
  31. <%
  32.     out.clear();                                //清空当前的输出内容(空格和换行符)
  33.     String word = request.getParameter("word"); //获取用户输入的word参数
  34.     StringBuffer result = new StringBuffer();   //用于保存检查结果
  35.     //根据checkWord方法调用结果设置检查结果输出信息
  36.     if (checkWord(word)) {
  37.         result.append("<span class='right'>");  //样式为right
  38.         result.append(word);
  39.         result.append("</span>");
  40.     } else {
  41.         result.append("<span class='wrong'>");  //样式为wrong
  42.         result.append(word);
  43.         result.append("</span>");
  44.     }
  45.     out.print(result.toString());               //输出检查结果
  46. %>