步驟:
1. 創建OCR應用,獲取API Key和Secret Key;
2. 查看接口文檔,文字識別OCR (baidu.com);
3. 編寫代碼;
代碼如下:
1. 獲取token
/** * 獲取API訪問token * 該token有一定的有效期,需要自行管理,當失效時需重新獲取. * @param ak - 百度雲官網獲取的 API Key * @param sk - 百度雲官網獲取的 Securet Key * @return assess_token */ private static String getAuth(String ak, String sk) { // 獲取token地址 String authHost = "https://aip.baidubce.com/oauth/2.0/token?"; String getAccessTokenUrl = authHost // 1. grant_type為固定參數 + "grant_type=client_credentials" // 2. 官網獲取的 API Key + "&client_id=" + ak // 3. 官網獲取的 Secret Key + "&client_secret=" + sk; try { URL realUrl = new URL(getAccessTokenUrl); // 打開和URL之間的連接 HttpURLConnection connection = (HttpURLConnection) realUrl.openConnection(); connection.setRequestMethod("GET"); connection.connect(); // 獲取所有響應頭字段 Map<String, List<String>> map = connection.getHeaderFields(); // 遍歷所有的響應頭字段 for (String key : map.keySet()) { System.err.println(key + "--->" + map.get(key)); } // 定義 BufferedReader輸入流來讀取URL的響應 BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream())); String result = ""; String line; while ((line = in.readLine()) != null) { result += line; } /** * 返回結果示例 */ System.err.println("result:" + result); JSONObject jsonObject = JSONObject.parseObject(result); String access_token = jsonObject.getString("access_token"); return access_token; } catch (Exception e) { System.err.printf("獲取token失敗!"); e.printStackTrace(System.err); } return null; }
2. 拿上token調用ocr接口
String access_token = getAuth("API Key", "Secret Key");
try {
// filePath為本地圖片路徑
byte[] imgData = FileUtils.readFileByBytes(filePath);
String imgStr = new String(Base64.encodeBase64(imgData));
String url = "https://aip.baidubce.com/rest/2.0/ocr/v1/idcard";
CloseableHttpClient httpclient = HttpClients.createDefault();
try {
HttpPost httppost = new HttpPost(url);
StringBody accessToken = new StringBody(access_token, ContentType.TEXT_PLAIN);
StringBody image = new StringBody(imgStr, ContentType.TEXT_PLAIN);
StringBody id_card_side = new StringBody("front", ContentType.TEXT_PLAIN);
HttpEntity reqEntity = MultipartEntityBuilder.create()
.addPart("access_token",accessToken)
.addPart("image",image)
.addPart("id_card_side",id_card_side)
.build();
httppost.setEntity(reqEntity);
System.out.println("executing request " + httppost.getRequestLine());
CloseableHttpResponse response = httpclient.execute(httppost);
try {
int statusCode = response.getStatusLine().getStatusCode();
HttpEntity resEntity = response.getEntity();
if (200 == statusCode && resEntity != null) {
logger.info("Response content length: {}", resEntity.getContentLength());
logger.info("Response content length: {}", resEntity.getContent());
String result = EntityUtils.toString(resEntity);
//打印獲取到的返回值
logger.info("Response content: {}", result);
JSONObject jsonObject = JSONObject.parseObject(result);
JSONObject wordsResult = jsonObject.getJSONObject("words_result");
String name = wordsResult.getJSONObject("姓名").getString("words");
String nation = wordsResult.getJSONObject("民族").getString("words");
String address = wordsResult.getJSONObject("住址").getString("words");
String idCardNo = wordsResult.getJSONObject("公民身份號碼").getString("words");
String birthDate = wordsResult.getJSONObject("出生").getString("words");
String sex = wordsResult.getJSONObject("性別").getString("words");
}
EntityUtils.consume(resEntity);
} finally {
response.close();
}
} finally {
httpclient.close();
}
} catch (Exception e) {
MsgAlert.alert("系統發生錯誤,請聯系管理員!");
}
