|
@@ -153,14 +153,14 @@ public class ZwywLrJbxxController extends BaseController {
|
|
|
}
|
|
|
System.out.println("----接收到返回数据");
|
|
|
JSONObject json = JSONObject.parseObject(DesEcbUtil.decryptDES(jsonRequest.toString(), ResourceUtil.getConfigByName("face.returnKey")));
|
|
|
- System.out.println("----返回数据JSON ======》 " + json);
|
|
|
+// System.out.println("----返回数据JSON ======》 " + json);
|
|
|
if (!ObjectUtils.isEmpty(json) && json.containsKey("CardNO")) {
|
|
|
String picBase64 = null;
|
|
|
if (json.containsKey("pic") && StringUtils.isNotEmpty(json.getString("pic"))) {
|
|
|
try {
|
|
|
- System.out.println("-----解密前的图片数据 =============> " + json.getString("pic"));
|
|
|
+// System.out.println("-----解密前的图片数据 =============> " + json.getString("pic"));
|
|
|
picBase64 = DESedeEncryptAndDecryptFile.decrypt(json.getString("pic"));
|
|
|
- System.out.println("-----解密后的图片数据 =============> " + picBase64);
|
|
|
+// System.out.println("-----解密后的图片数据 =============> " + picBase64);
|
|
|
} catch (Exception e) {
|
|
|
System.out.println("-----图片数据解密失败 =============> " + e.getMessage());
|
|
|
}
|