Java爬去教务系统后怎么发布_java实现-强智教务系统API文档-课程信息

java实现-强智教务系统API文档-课程信息

java实现-强智教务系统API文档-课程信息

836d2caf739140674bc66af35f815685.png

代码实现

import org.apache.http.HttpEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.utils.URIBuilder;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

import java.io.IOException;

import java.net.URISyntaxException;

public class Test3 {

public static void main(String[] args) throws URISyntaxException, IOException {

String token = new Data().getToken("学号","密码");

CloseableHttpClient httpClient = HttpClients.createDefault();

URIBuilder uriBuilder = new URIBuilder("http://zswxyjw.minghuaetc.com/znlykjdxswxy/app.do");

uriBuilder.setParameter("method","getKbcxAzc");

uriBuilder.setParameter("xh","20177583");

uriBuilder.setParameter("xnxqid","2018-2019-2");

uriBuilder.setParameter("zc","14");

HttpGet httpGet = new HttpGet(uriBuilder.build());

httpGet.setHeader("token",token);

CloseableHttpResponse response = httpClient.execute(httpGet);

String s = null;

if(response.getStatusLine().getStatusCode()==200){

HttpEntity entity = response.getEntity();

s = EntityUtils.toString(entity, "utf-8");

System.out.println(s);

}

}

}

java实现-强智教务系统API文档-课程信息相关教程

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值