java 条码识别_条码识别示例代码
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();
}
}
}
總結(jié)
以上是生活随笔為你收集整理的java 条码识别_条码识别示例代码的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 地下城与勇士怎么把二级密保取消掉
- 下一篇: 咸阳治疗男性不育最好的医院推荐