eoLinker-API_Shop_火车票查询_API接口_Java调用示例代码_第1页
eoLinker-API_Shop_火车票查询_API接口_Java调用示例代码_第2页
eoLinker-API_Shop_火车票查询_API接口_Java调用示例代码_第3页
eoLinker-API_Shop_火车票查询_API接口_Java调用示例代码_第4页
eoLinker-API_Shop_火车票查询_API接口_Java调用示例代码_第5页
已阅读5页,还剩6页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、eoLinker-API Shop 火车票查询 Java调用示例代码火车票查询提供全国火车票、火车车站和火车余票查询该产品拥有以下APIs:1. 余票查询2. 车次信息查询3. 站到站车票查询注意,该示例代码仅适用于 网站下API 使用该产品前,您需要通过 /#/api/detail/?productID=91 申请API服务1.余票查询package net.apishop.www.controller;import java.io.DataOutputStream;import java.io.IOExceptio

2、n;import java.io.InputStream;import java.io.UnsupportedEncodingException;import .HttpURLConnection;import .MalformedURLException;import .URL;import .URLEncoder;import java.util.HashMap;import java.util.Map;import com.alibaba.fastjson.JSONObject;/* * httpUrlConnection访

3、问远程接口工具 */public class Api /* * 方法体说明:向远程接口发起请求,返回字节流类型结果 * param url 接口地址 * param requestMethod 请求方式 * param params 传递参数 重点:参数值需要用Base64进行转码 * return InputStream 返回结果 */ public static InputStream httpRequestToStream(String url, String requestMethod, Map params) InputStream is = null; try String par

4、ameters = ; boolean hasParams = false; / 将参数集合拼接成特定格式,如name=zhangsan&age=24 for (String key : params.keySet() String value = URLEncoder.encode(params.get(key), UTF-8); parameters += key + = + value + &; hasParams = true; if (hasParams) parameters = parameters.substring(0, parameters.length() - 1); /

5、 请求方式是否为get boolean isGet = get.equalsIgnoreCase(requestMethod); / 请求方式是否为post boolean isPost = post.equalsIgnoreCase(requestMethod); if (isGet) url += ? + parameters; URL u = new URL(url); HttpURLConnection conn = (HttpURLConnection) u.openConnection(); / 请求的参数类型(使用restlet框架时,为了兼容框架,必须设置Content-Typ

6、e为“”空) conn.setRequestProperty(Content-Type, application/octet-stream); / conn.setRequestProperty(Content-Type, application/x-www-form-urlencoded); / 设置连接超时时间 conn.setConnectTimeout(50000); / 设置读取返回内容超时时间 conn.setReadTimeout(50000); / 设置向HttpURLConnection对象中输出,因为post方式将请求参数放在http正文内,因此需要设置为ture,默认fa

7、lse if (isPost) conn.setDoOutput(true); / 设置从HttpURLConnection对象读入,默认为true conn.setDoInput(true); / 设置是否使用缓存,post方式不能使用缓存 if (isPost) conn.setUseCaches(false); / 设置请求方式,默认为GET conn.setRequestMethod(requestMethod); / post方式需要将传递的参数输出到conn对象中 if (isPost) DataOutputStream dos = new DataOutputStream(con

8、n.getOutputStream(); dos.writeBytes(parameters); dos.flush(); dos.close(); / 从HttpURLConnection对象中读取响应的消息 / 执行该语句时才正式发起请求 is = conn.getInputStream(); catch(UnsupportedEncodingException e) e.printStackTrace(); catch(MalformedURLException e) e.printStackTrace(); catch(IOException e) e.printStackTrace(

9、); return is; public static void main(String args) String url = /common/postcode/getPostCodeByAddr; String requestMethod = POST; Map params = new HashMap(); params.put(date, ); /日期,格式:YYYY-mm-dd params.put(startStation, ); /起始站,如“广州南”(不需要加上站字) params.put(endStation, ); /终点站,如“普

10、宁”(不需要加上站字) String result = null; try InputStream is = httpRequestToStream(url, requestMethod, params); byte b = new byteis.available(); is.read(b); result = new String(b); catch(IOException e) e.printStackTrace(); if (result != null) JSONObject jsonObject = JSONObject.parseObject(result); String st

11、atus_code = jsonObject.getString(statusCode); if (status_code = 000000) / 状态码为000000, 说明请求成功 System.out.println(请求成功: + jsonObject.getString(result); else / 状态码非000000, 说明请求失败 System.out.println(请求失败: + jsonObject.getString(desc); else / 返回内容异常,发送请求失败,以下可根据业务逻辑自行修改 System.out.println(发送请求失败); 2.车次信息

12、查询package net.apishop.www.controller;import java.io.DataOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.UnsupportedEncodingException;import .HttpURLConnection;import .MalformedURLException;import .URL;import .URLEncoder;import java.ut

13、il.HashMap;import java.util.Map;import com.alibaba.fastjson.JSONObject;/* * httpUrlConnection访问远程接口工具 */public class Api /* * 方法体说明:向远程接口发起请求,返回字节流类型结果 * param url 接口地址 * param requestMethod 请求方式 * param params 传递参数 重点:参数值需要用Base64进行转码 * return InputStream 返回结果 */ public static InputStream httpReque

14、stToStream(String url, String requestMethod, Map params) InputStream is = null; try String parameters = ; boolean hasParams = false; / 将参数集合拼接成特定格式,如name=zhangsan&age=24 for (String key : params.keySet() String value = URLEncoder.encode(params.get(key), UTF-8); parameters += key + = + value + &; has

15、Params = true; if (hasParams) parameters = parameters.substring(0, parameters.length() - 1); / 请求方式是否为get boolean isGet = get.equalsIgnoreCase(requestMethod); / 请求方式是否为post boolean isPost = post.equalsIgnoreCase(requestMethod); if (isGet) url += ? + parameters; URL u = new URL(url); HttpURLConnectio

16、n conn = (HttpURLConnection) u.openConnection(); / 请求的参数类型(使用restlet框架时,为了兼容框架,必须设置Content-Type为“”空) conn.setRequestProperty(Content-Type, application/octet-stream); / conn.setRequestProperty(Content-Type, application/x-www-form-urlencoded); / 设置连接超时时间 conn.setConnectTimeout(50000); / 设置读取返回内容超时时间 c

17、onn.setReadTimeout(50000); / 设置向HttpURLConnection对象中输出,因为post方式将请求参数放在http正文内,因此需要设置为ture,默认false if (isPost) conn.setDoOutput(true); / 设置从HttpURLConnection对象读入,默认为true conn.setDoInput(true); / 设置是否使用缓存,post方式不能使用缓存 if (isPost) conn.setUseCaches(false); / 设置请求方式,默认为GET conn.setRequestMethod(requestM

18、ethod); / post方式需要将传递的参数输出到conn对象中 if (isPost) DataOutputStream dos = new DataOutputStream(conn.getOutputStream(); dos.writeBytes(parameters); dos.flush(); dos.close(); / 从HttpURLConnection对象中读取响应的消息 / 执行该语句时才正式发起请求 is = conn.getInputStream(); catch(UnsupportedEncodingException e) e.printStackTrace(

19、); catch(MalformedURLException e) e.printStackTrace(); catch(IOException e) e.printStackTrace(); return is; public static void main(String args) String url = /common/postcode/getPostCodeByAddr; String requestMethod = POST; Map params = new HashMap(); params.put(trainNo, ); /车次编

20、号,如“G6313” String result = null; try InputStream is = httpRequestToStream(url, requestMethod, params); byte b = new byteis.available(); is.read(b); result = new String(b); catch(IOException e) e.printStackTrace(); if (result != null) JSONObject jsonObject = JSONObject.parseObject(result); String sta

21、tus_code = jsonObject.getString(statusCode); if (status_code = 000000) / 状态码为000000, 说明请求成功 System.out.println(请求成功: + jsonObject.getString(result); else / 状态码非000000, 说明请求失败 System.out.println(请求失败: + jsonObject.getString(desc); else / 返回内容异常,发送请求失败,以下可根据业务逻辑自行修改 System.out.println(发送请求失败); 3.站到站车票

22、查询package net.apishop.www.controller;import java.io.DataOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.UnsupportedEncodingException;import .HttpURLConnection;import .MalformedURLException;import .URL;import .URLEncoder;import java.ut

23、il.HashMap;import java.util.Map;import com.alibaba.fastjson.JSONObject;/* * httpUrlConnection访问远程接口工具 */public class Api /* * 方法体说明:向远程接口发起请求,返回字节流类型结果 * param url 接口地址 * param requestMethod 请求方式 * param params 传递参数 重点:参数值需要用Base64进行转码 * return InputStream 返回结果 */ public static InputStream httpReque

24、stToStream(String url, String requestMethod, Map params) InputStream is = null; try String parameters = ; boolean hasParams = false; / 将参数集合拼接成特定格式,如name=zhangsan&age=24 for (String key : params.keySet() String value = URLEncoder.encode(params.get(key), UTF-8); parameters += key + = + value + &; has

25、Params = true; if (hasParams) parameters = parameters.substring(0, parameters.length() - 1); / 请求方式是否为get boolean isGet = get.equalsIgnoreCase(requestMethod); / 请求方式是否为post boolean isPost = post.equalsIgnoreCase(requestMethod); if (isGet) url += ? + parameters; URL u = new URL(url); HttpURLConnectio

26、n conn = (HttpURLConnection) u.openConnection(); / 请求的参数类型(使用restlet框架时,为了兼容框架,必须设置Content-Type为“”空) conn.setRequestProperty(Content-Type, application/octet-stream); / conn.setRequestProperty(Content-Type, application/x-www-form-urlencoded); / 设置连接超时时间 conn.setConnectTimeout(50000); / 设置读取返回内容超时时间 c

27、onn.setReadTimeout(50000); / 设置向HttpURLConnection对象中输出,因为post方式将请求参数放在http正文内,因此需要设置为ture,默认false if (isPost) conn.setDoOutput(true); / 设置从HttpURLConnection对象读入,默认为true conn.setDoInput(true); / 设置是否使用缓存,post方式不能使用缓存 if (isPost) conn.setUseCaches(false); / 设置请求方式,默认为GET conn.setRequestMethod(requestM

28、ethod); / post方式需要将传递的参数输出到conn对象中 if (isPost) DataOutputStream dos = new DataOutputStream(conn.getOutputStream(); dos.writeBytes(parameters); dos.flush(); dos.close(); / 从HttpURLConnection对象中读取响应的消息 / 执行该语句时才正式发起请求 is = conn.getInputStream(); catch(UnsupportedEncodingException e) e.printStackTrace(); catch(MalformedURLException e) e.printStackTrace

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论