online_dict.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.     String getExplain(String word) {
  7.         String explain = null;                   //存放信息信息
  8.         String sql = "select chinese from words where word = ?";   //定义查询数据库的SQL语句
  9.         Connection conn = null;                 //声明Connection对象
  10.         PreparedStatement pstmt = null;         //声明PreparedStatement对象
  11.         ResultSet rs = null;                    //声明ResultSet对象
  12.         try {
  13.             conn = DBUtils.getConnection();     //获取数据库连接
  14.             pstmt = conn.prepareStatement(sql); //根据sql创建PreparedStatement
  15.             pstmt.setString(1, word);           //设置参数
  16.             rs = pstmt.executeQuery();          //执行查询,返回结果集
  17.             if (rs.next()) {
  18.                 explain = rs.getString(1);
  19.             }
  20.         } catch (SQLException e) {
  21.             System.out.println(e.toString());
  22.         } finally {
  23.             DBUtils.close(rs);                  //关闭结果集
  24.             DBUtils.close(pstmt);               //关闭PreparedStatement
  25.             DBUtils.close(conn);                //关闭连接
  26.         }
  27.         return explain;
  28.     }
  29. %>
  30. <%
  31.     out.clear();                                        //清空当前的输出内容(空格和换行符)
  32.     String word = request.getParameter("word");         //获取word参数
  33.     String explain = getExplain(word);                  //调用getExplain方法获取关键词详细信息
  34.     //当解释存在时写入响应体
  35.     if (explain != null) {
  36.         out.print(word + ":" + explain);
  37.     }
  38. %>