java 刷票_用java发送ajax请求实现刷票(干坏事^_^)

本文演示了如何使用Java的HttpClient库发送Ajax POST请求,模拟刷票操作。提供的代码展示了如何设置请求URL、参数,并处理响应。同时,给出了前端jQuery的Ajax请求示例作为参考。
摘要由CSDN通过智能技术生成

import java.io.IOException;

import org.apache.commons.httpclient.HttpClient;

import org.apache.commons.httpclient.HttpException;

import org.apache.commons.httpclient.HttpStatus;

import org.apache.commons.httpclient.methods.PostMethod;

public class AjaxSend {

private static String url = "http://172.26.188.112:8080/BooksStore/ajax/selectuser";

public static void main(String[] args) {

HttpClient client = new HttpClient();

String body = "[{\"name\":liming,\"password\":123456}]";

method(client, url, body);

}

@SuppressWarnings("deprecation")

public static void method(HttpClient client, String url, String body) {

PostMethod method = new PostMethod(url);

method.setRequestBody(body);// addParameters(postData);

try {

// Execute the method.

int statusCode = client.executeMethod(method);

if (statusCode != HttpStatus.SC_OK) {

System.err.println("Method failed: " + method.getStatusLine());

}

// Read the response body.

byte[] responseBody = method.getResponseBody();

// Deal with the response.

// Use caution: ensure correct character encoding and is not binary data

System.out.println(new String(responseBody, "utf-8"));

}

catch (HttpException e) {

System.err.println("Fatal protocol violation: " + e.getMessage());

e.printStackTrace();

}

catch (IOException e) {

System.err.println("Fatal transport error: " + e.getMessage());

e.printStackTrace();

}

finally {

// Release the connection.

method.releaseConnection();

}

}

}

我在前台捕捉到的ajax是这样的:

$.ajax({

type : "POST",

url : ContextPath + urls.getXxl,

data : {

name:$("#user").val(),

password:$("#password").val()

},

dataType : "json",

async : false,

cache : false,

success : function(jsonData) {

if(jsonData.dataExit){

window.location.href="bookstore";

}

else{

error();

}

}

}); 大家可以去试试喽!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值