首页 条码生成识别 条码生成识别示例代码 条码识别[Java]

条码识别示例代码[Java]

作者:xiezhongpian 阅读数:1741 上传时间:2017-05-09

条码识别

package api.jisuapi.barcode;

import api.util.HttpUtil;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;

public class Read {

	public static final String APPKEY = "your_appkey_here";// 你的appkey
	public static final String URL = "https://api.jisuapi.com/barcode/read";
	public static final String barcode = "https://api.jisuapi.com/barcode/barcode/1471602033673149.png";

	public static void Get() {
		String result = null;
		String url = URL + "?appkey=" + APPKEY + "&barcode=" + barcode;

		try {
			result = HttpUtil.sendGet(url, "utf-8");
			JSONObject json = JSONObject.fromObject(result);
			if (json.getInt("status") != 0) {
				System.out.println(json.getString("msg"));
			} else {
				JSONArray resultarr = json.optJSONArray("result");
				for (int i = 0; i < resultarr.size(); i++) {
					JSONObject obj = (JSONObject) resultarr.opt(i);
					String type = obj.getString("type");
					String number = obj.getString("number");
					System.out.println(type + " " + number);
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}