违章查询免费api接口代码
2020-12-13 04:49
标签:http java os 数据 2014 io 可以根据城市+车牌号+发动机号查询违章信息列表; 违章实体类 违章时间:2013-01-22 08:33:00 违章时间:2013-03-12 08:33:00 违章时间:2013-12-25 19:22:00 违章时间:2014-06-24 19:06:00 违章查询免费api接口代码,搜素材,soscw.com 违章查询免费api接口代码 标签:http java os 数据 2014 io 原文地址:http://blog.csdn.net/wangxw8746/article/details/37922909package org.wx.xhelper.model;
/**
* 违章实体类
* @author wangxw
* @version 1.0
* @date Jul 11, 2014 3:25:34 PM
*/
public class ViolRegu {
// 违章时间
private String date;
// 违章地点
private String area;
// 违章行为
private String act;
// 违章扣分
private String fen;
// 违章罚款
private String money;
// 是否处理
private String handled;
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getArea() {
return area;
}
public void setArea(String area) {
this.area = area;
}
public String getAct() {
return act;
}
public void setAct(String act) {
this.act = act;
}
public String getFen() {
return fen;
}
public void setFen(String fen) {
this.fen = fen;
}
public String getMoney() {
return money;
}
public void setMoney(String money) {
this.money = money;
}
public String getHandled() {
return handled;
}
public void setHandled(String handled) {
this.handled = handled;
}
}
违章查询服务接口类package org.wx.xhelper.service;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.wx.xhelper.model.ViolRegu;
import org.wx.xhelper.util.CitysUtil;
import org.wx.xhelper.util.HttpRequestUtil;
/**
* 违章查询服务接口类
* @author wangxw
* @version 1.0
* @date Jul 11, 2014 3:29:16 PM
*/
public class ViolReguService {
/**
* 生成违章信息
* @param cityName
* @param carNo
* @param engineNo
* @return 返回违章信息
* @throws UnsupportedEncodingException
*/
public static String getViolReguDetail(String cityName,String carNo,String engineNo) throws UnsupportedEncodingException{
// 获取违章信息列表
List
查询结果:
违章地点:延安路与瑞金路交叉口
违章行为:在禁止通行的时间、路段、车道内行驶的
违章扣分:0
违章罚款:200
处理状态:未处理
违章地点:瑞金南路和文化路交叉口
违章行为:在禁止通行的时间、路段、车道内行驶的
违章扣分:0
违章罚款:200
处理状态:未处理
违章地点:箭道街
违章行为:机动车逆向行驶的
违章扣分:3
违章罚款:200
处理状态:未处理
违章地点:解放路(嘉润路口-南厂路口)
违章行为:在禁止通行的时间、路段、车道内行驶的
违章扣分:0
违章罚款:200
处理状态:未处理