Android 阿里云身份识别

准备工作:

1.在libs下添加 alicloud-Android-apigateway-sdk-1.0.1.jar
2.在build.gradle添加 compile'com.squareup.okhttp3:okhttp:3.4.1'

// 初始化API网关

ApiGatewayClient.init(getApplicationContext(), false);

//调用拍照功能

private void getPhotoCard(){
final String status = Environment.getExternalStorageState();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    requestPermissions(new String[]{Manifest.permission.CAMERA, Manifest.permission.WRITE_EXTERNAL_STORAGE}, CAMERA_REQUEST_CODE);
}
if (status.equals(Environment.MEDIA_MOUNTED)) {
    defaultPhotoAddress = PHOTO_DIR + "/" + getPhotoName();
    PreferenceUtils.modifyStringValueInPreferences(CardActivity.this, Preferences.IMAGE_3, defaultPhotoAddress);
    imageUri = Uri.fromFile(new File(defaultPhotoAddress));

    Intent intentPhoto = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);//action is capture
    intentPhoto.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);
    startActivityForResult(intentPhoto, CAMERA_REQUEST_CODE);

} else {
    Toast.makeText(CardActivity.this, "没有sd卡", Toast.LENGTH_SHORT).show();
}

}

//可以对照片进行裁剪

private void cropImageUri(Uri desUri, int outputX, int outputY, int requestCode){
Intent intent = new Intent("com.android.camera.action.CROP");
intent.setDataAndType(desUri, "image/*");
intent.putExtra("crop", "true");
intent.putExtra("aspectX", 5);
intent.putExtra("aspectY", 3);
intent.putExtra("outputX", outputX);
intent.putExtra("outputY", outputY);
intent.putExtra("scale", true);
intent.putExtra(MediaStore.EXTRA_OUTPUT, desUri);
intent.putExtra("return-data", false);
intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
intent.putExtra("noFaceDetection", true);
startActivityForResult(intent, requestCode);

}
//用base64上传照片

  private void trygetCardNum() {
if (NetworkUtils.isConnectWithTip(this, "您未连接网络,无法获取数据")) {
    LoadingUtil.show(this);
    String imgBase64 = "";
   try {
        defaultPhotoAddress = PreferenceUtils.getStringValueInPreferences(this, Preferences.IMAGE_3);
        File file = new File(defaultPhotoAddress);
        byte[] content = new byte[(int) file.length()];
        FileInputStream finputstream = new FileInputStream(file);
        finputstream.read(content);
        finputstream.close();
        imgBase64 = new String(Base64.encodeBase64(content));
       // imgBase64 = Base64Img.Bitmap2StrByBase64(bitmap);
        if(imgBase64!=null||!imgBase64.equals("")){
            PreferenceUtils.modifyStringValueInPreferences(CardActivity.this, Preferences.IMAGE_3, null);
        }
    } catch (IOException e) {
        e.printStackTrace();
        return;
    }

// 获取服务

    RpcService rpcService = ApiGatewayClient.getRpcService();
    final ApiRequest apiRequest = new ApiRequest();
    // 设置请求地址、Path及Method
    apiRequest.setAddress("https://dm-51.data.aliyun.com");
    apiRequest.setPath("/rest/160601/ocr/ocr_idcard.json");
    apiRequest.setMethod(HttpMethod.POST);
    // 按照文档设置二进制形式Body,支持设置Query参数、Header参数、Form形式Body
    apiRequest.setStringBody("{\"inputs\":[{\"image\":{\"dataType\":50,\"dataValue\":\""+imgBase64+"\"},\"configure\":{\"dataType\":50,\"dataValue\":\"{\\\"side\\\":\\\"face\\\"}\"}}]}");
    // 设置支持自签等形式的证书,如果服务端证书合法请勿设置该值,仅在开发测试或者非常规场景下设置。
    apiRequest.setTrustServerCertificate(true);
    // 设置超时
    apiRequest.setTimeout(10000);
    rpcService.call(apiRequest, new ApiResponseCallback() {
        @Override
        public void onSuccess(ApiResponse apiResponse) {
            // 处理apiResponse
            LoadingUtil.dismiss();
            String s = apiResponse.getStringBody();
            NumBean result = JSONObject.parseObject(s, NumBean.class);
            String dataValue = result.getOutputs().get(0).getOutputValue().getDataValue();
            DataValueBean dataValueBean = JSONObject.parseObject(dataValue, DataValueBean.class);
            Number = dataValueBean.getNum();
            name = dataValueBean.getName();
            address = dataValueBean.getAddress();
            birth = dataValueBean.getBirth();
            nationality = dataValueBean.getNationality();
            sex = dataValueBean.getSex();
            if(dataValueBean.getError_msg()==null){
                runOnUiThread(new Runnable() {
                    public void run() {
                        if(Number == null||Number.equals("")||name == null||name.equals("")||address == null||address.equals("")||birth == null||birth.equals("")||sex == null||sex.equals("")){
       Toast.makeText(CardActivity.this, "扫描失败,请重试", Toast.LENGTH_LONG).show();
                        }else {
                            //扫描成功
                        }
                    }
                });
            }else {
                errString = dataValueBean.getError_msg();
                runOnUiThread(new Runnable() {
                    public void run() {
                        Toast.makeText(CardActivity.this, "扫描失败,请重试", Toast.LENGTH_LONG).show();
                    }
                });
            }
        }
        @Override
        public void onException(ApiInvokeException e) {
            // 处理异常
            LoadingUtil.dismiss();
            runOnUiThread(new Runnable() {
                public void run() {
                    Toast.makeText(CardActivity.this, "扫描失败,请重试", Toast.LENGTH_LONG).show();
                }
            });
        }
    });
}

}

//附:public class NumBean implements Serializable{

private List<OutputsBean> outputs;

public List<OutputsBean> getOutputs() {
    return outputs;
}

public void setOutputs(List<OutputsBean> outputs) {
    this.outputs = outputs;
}

public static class OutputsBean {

    private String outputLabel;
    private OutputMultiBean outputMulti;
    private OutputValueBean outputValue;

    public String getOutputLabel() {
        return outputLabel;
    }

    public void setOutputLabel(String outputLabel) {
        this.outputLabel = outputLabel;
    }

    public OutputMultiBean getOutputMulti() {
        return outputMulti;
    }

    public void setOutputMulti(OutputMultiBean outputMulti) {
        this.outputMulti = outputMulti;
    }

    public OutputValueBean getOutputValue() {
        return outputValue;
    }

    public void setOutputValue(OutputValueBean outputValue) {
        this.outputValue = outputValue;
    }

    public static class OutputMultiBean {
    }

    public static class OutputValueBean {
  

        private int dataType;
        private String dataValue;

        public int getDataType() {
            return dataType;
        }

        public void setDataType(int dataType) {
            this.dataType = dataType;
        }

        public String getDataValue() {
            return dataValue;
        }

        public void setDataValue(String dataValue) {
            this.dataValue = dataValue;
        }
    }
}

}
public class DataValueBean implements Serializable{

private String address;
private String birth;
private String config_str;
private String error_msg;
private String name;
private String nationality;
private String num;
private String request_id;
private String sex;
private boolean success;

public String getAddress() {
    return address;
}

public void setAddress(String address) {
    this.address = address;
}

public String getBirth() {
    return birth;
}

public void setBirth(String birth) {
    this.birth = birth;
}

public String getConfig_str() {
    return config_str;
}

public void setConfig_str(String config_str) {
    this.config_str = config_str;
}

public String getError_msg() {
    return error_msg;
}

public void setError_msg(String error_msg) {
    this.error_msg = error_msg;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getNationality() {
    return nationality;
}

public void setNationality(String nationality) {
    this.nationality = nationality;
}

public String getNum() {
    return num;
}

public void setNum(String num) {
    this.num = num;
}

public String getRequest_id() {
    return request_id;
}

public void setRequest_id(String request_id) {
    this.request_id = request_id;
}

public String getSex() {
    return sex;
}

public void setSex(String sex) {
    this.sex = sex;
}

public boolean isSuccess() {
    return success;
}

public void setSuccess(boolean success) {
    this.success = success;
}

}

//在AndroidManifest.xml下添加
<meta-data android:name="com.alibaba.apigateway.appKey" android:value="" />
<meta-data android:name="com.alibaba.apigateway.appSecret" android:value=""/>

另附(Okhttp):

    String base64 =      
    BitmapUtil.bitmapToBase64(BitmapUtil.getBitFromPath(imagePath));

    String json = "{\"inputs\":[{\"image\":{\"dataType\":50,\"dataValue\":\"" + base64 + "\"},\"configure\":{\"dataType\":50,\"dataValue\":\"{\\\"side\\\":\\\"face\\\"}\"}}]}";
    OkHttpUtils.postString()
            .url("http://dm-51.data.aliyun.com/rest/160601/ocr/ocr_idcard.json")
            .mediaType(MediaType.parse("application/json; charset=UTF-8"))
            .addHeader("Authorization", "APPCODE d27bf3acd90044709a8947f28f3ed3ad")
            .content(json)
            .build()
            .execute(new StringCallback() {
                @Override
                public void onError(Call call, Exception e, int id) {
                   Log.e("TAG", e.toString());
                }

                @Override
                public void onResponse(String response, int id) {
                    Log.e("TAG", response.toString());
                }
            });

技术交流群:633600411

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容