欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

javaweb中ajax请求后台servlet(实例)

时间:2020-12-02 13:05:34|栏目:JAVA代码|点击:

废话不多说,直接上代码

public class DZFP_jdbc extends HttpServlet{
  private static final long serialVersionUID = 1L;

  public static Connection conn; 
  public static ResultSet rs = null ;  
  public static PreparedStatement ps = null ;
  private static String url = "jdbc:oracle:thin:@192.168.100.11:1111:CRM";
  private static String name = "name";
  private static String pwd = "pwd";

  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    /*PreparedStatement ps;
    ResultSet rs = null;*/
    response.setCharacterEncoding("utf-8");
    request.setCharacterEncoding("utf-8");
    response.setHeader("content-type", "text/html;charset=UTF-8");

    PrintWriter out = response.getWriter();

    ***********

    out.print("{\"errorno\":[{\"list\":error}]}");
  }
}


$.ajax({ 
  type: "post", 
  url: "DZFP_jdbc", 
  dataType: "text", 

    data : {
      taxcode : taxcode,
      mobilenum : mobilenum
  },
  timeout : 50000,

    success: function (data) { 
  var jsonobjs = eval("(" + data + ")");
  var list = jsonobjs.errorno[0].list;


    }, 
  error: function() {
      alert("网络异常,请稍后重试");

  } 
});

<servlet>
  <servlet-name>DZFP_jdbc</servlet-name>
  <servlet-class>
  weishijiestudio.hangxinwx.servlet.DZFP_jdbc
  </servlet-class>
</servlet>
<servlet-mapping>
  <servlet-name>DZFP_jdbc</servlet-name>
  <url-pattern>/DZFP_jdbc</url-pattern>
</servlet-mapping>

上一篇:Eclipse 出现A configuration with this name already exists问题解决方法

栏    目:JAVA代码

下一篇:MongoDB支持的java数据类型和测试例子

本文标题:javaweb中ajax请求后台servlet(实例)

本文地址:http://www.codeinn.net/misctech/28688.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有