word_tip.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 getDetail(String keyword) {
  7.         String detail = null;                   //存放信息信息
  8.         String sql = "select detail from word_tip where keyword = ?";   //定义查询数据库的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, keyword);        //设置参数
  16.             rs = pstmt.executeQuery();          //执行查询,返回结果集
  17.             if (rs.next()) {
  18.                 detail = 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 detail;
  28.     }
  29. %>
  30. <%
  31.     out.clear();                                        //清空当前的输出内容(空格和换行符)
  32.     String keyword = request.getParameter("keyword");   //获取keyword参数
  33.     String detail = getDetail(keyword);                 //调用getDetail方法获取关键词详细信息
  34.     //当详细信息存在时写入响应体
  35.     if (detail != null) {
  36.         out.print(detail);
  37.     }
  38. %>