最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

怎么用手机NFC快速读取二代身份证信息

IT圈 admin 374浏览 0评论

2023年12月7日发(作者:税奇颖)

怎么用手机NFC快速读取二代身份证信息

经常在一些环境中需要用到身份证读取,比如网吧、银行、门禁等等,但是传统的身份证读取工具很大不说,价格还不便宜。近期闲来无事研究了

一下,发现是靠近场通信功能进行的身份证读取,刚好我手机上也带的有NFC,那能不能用手机直接读身份证信息呢。

说干就在,在网上找了一圈后,还真让我找到一个好用的身份证读取的开发包,集成起来很简单,只需要自己打开NFC,然后需要调用2个接口就

可以搞定,在这特地记录下来,以防以后忘了。

这个开发包有安卓和PC版的,PC版的据说是可以支持多开发语言的,需要专用读卡器,第一次购买还可以用开发者身份打折买一个试用的。不过

我这次主要是为了用我手机进行读身份证,所以这次就先用安卓版的开发包了,安卓的支持NFC读身份证和OTG读身份证,同样OTG需要用到专

用读卡器,NFC读身份证只需要手机支持NFC功能就可以了。

下面是步骤:

1.获取管理权限:这个开发包里已经集成了,只需要调用一句代码就可以搞定,这个还是挺方便的。

eedPermission(this);

2.打开NFC,并监听NFC事件,这段如果不懂,直接在网上搜安卓使用NFC就可以看到介绍

private NfcAdapter mAdapter = null; // 定义NFC适配器

mAdapter = aultAdapter(getApplicationContext());

pi = ivity(this, 0, new Intent(this, getClass())

.addFlags(_ACTIVITY_SINGLE_TOP), 0);

tagDetected = new IntentFilter(_TECH_DISCOVERED);//.ACTION_TAG_DISCOVERED);

egory(RY_DEFAULT);

mTechLists = new String[][]{new String[]{e()}, new String[]{e()}};

if (mAdapter != null && !led()) {

xt(this, "NFC尚未开启", _SHORT).show();

}

3.因为我的NFC事件是在子线程中的,所以new了一个handle

private static class MyHandler extends Handler {

private final WeakReference mActivity;

public MyHandler(IDCardScannerActivity activity) {

mActivity = new WeakReference(activity);

}

@Override

public void handleMessage(Message msg) {

n(msg);

if (() == null) {

return;

}

if ( == 1002)

throw new RuntimeException();

else {

try {

().todo(msg);

} catch (FileNotFoundException e) {

tackTrace();

}

}

}

}

4.初始化读身份证类:

private OTGReadCardAPI ReadCardAPI; // 定义读身份证类

ReadCardAPI = new OTGReadCardAPI(getApplicationContext(), this, false); // 初始化类,第三个是回调地址,

第三个直接传false就可以了

// 设置服务器地址及端口

ArrayList twoCardServerlist = new ArrayList();

(new Serverinfo("", 8848));

verInfo(twoCardServerlist, null, bTestServer);

5.当手机检测到身份证靠近的时候,会回调onNewIntent,在这个里面直接 读身份证即可。但是为避免出现问题,我直接发送消息到 Handle里

面处理。

@Override

protected void onNewIntent(Intent intent) {

ntent(intent);

inintent = intent;

ptyMessageDelayed(1, 0);

}

6.读身份证,在MyHandler 中会调到todo里面,这里面是读身份证的操作

public void todo(Message msg) throws FileNotFoundException {

int tt = 0;

m_szProcess = "";

t("");

m_szAppKey = ing("AppKey", "");

int nnum = KeyUseNum(m_szAppKey);

if (nnum <= 0) nnum = 0;

t(f(nnum));

if (m_y() || nnum<=0)

{

regeditAppkey(true);

}

t(m_szAppKey);

if (!m_y() && nnum>0) { if ( == 1 || ==1005) { if ( == 1005) { inintent = null; } tt = dCard(m_szAppKey, null, inintent, neralCard, "",m_bAuthon); } if (m_bshow) { t(m_szUserInfo); } if (tt == 41) { if (m_berror) { setdialog("读卡失败!" + orInfo()); } else { int nerr = orCode(); if (nerr==-24997) { setdialog("此设备没有解码权限!"); } else setdialog("读卡失败!"); } t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); } if (tt == 90) { if (CardInfo().arrTwoIdPhoto != null) { kground(newBitmapDrawable(Bytes2Bimap(CardInfo().arrTwoIdPhoto))); } if (CardInfo().("J")) { t("港澳居民居住证"); t(CardInfo().szTwoOtherNO); t(CardInfo().szTwoSignNum); } else {

t("居民身份证");

t("");

t("");

}

t(CardInfo().());

t(CardInfo().());

t(CardInfo().());

t(CardInfo().());

t(CardInfo().() + "族");

t("中国");

t(CardInfo().());

t(CardInfo().ing(0, 4) + "-" +

CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8));

String startDate = CardInfo().ing(0, 4) +

"-" + CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8);

String endDate = "";

int nlen = CardInfo().f("长期");

if (nlen != -1) {

endDate = "长期";

} else {

endDate = CardInfo().ing(0, 4) + "-" +

CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8);

}

t(startDate + "~" + endDate);

//t("100");

e();

}

}

}

到此身份证就读取完了,当然 了第一次使用可以调用开发包自带的接口进行注册,注册也简单,只需要填写昵称和手机号,然后填入验证码就可

以了。

由于CSDN积分规则,需要的下载分越来越贵,特地上传到了上面两个地方可以下载到windows/linux/android三个平台的SDK及demo和源

码,免费送大家分享,欢迎一起学习探讨

2023年12月7日发(作者:税奇颖)

怎么用手机NFC快速读取二代身份证信息

经常在一些环境中需要用到身份证读取,比如网吧、银行、门禁等等,但是传统的身份证读取工具很大不说,价格还不便宜。近期闲来无事研究了

一下,发现是靠近场通信功能进行的身份证读取,刚好我手机上也带的有NFC,那能不能用手机直接读身份证信息呢。

说干就在,在网上找了一圈后,还真让我找到一个好用的身份证读取的开发包,集成起来很简单,只需要自己打开NFC,然后需要调用2个接口就

可以搞定,在这特地记录下来,以防以后忘了。

这个开发包有安卓和PC版的,PC版的据说是可以支持多开发语言的,需要专用读卡器,第一次购买还可以用开发者身份打折买一个试用的。不过

我这次主要是为了用我手机进行读身份证,所以这次就先用安卓版的开发包了,安卓的支持NFC读身份证和OTG读身份证,同样OTG需要用到专

用读卡器,NFC读身份证只需要手机支持NFC功能就可以了。

下面是步骤:

1.获取管理权限:这个开发包里已经集成了,只需要调用一句代码就可以搞定,这个还是挺方便的。

eedPermission(this);

2.打开NFC,并监听NFC事件,这段如果不懂,直接在网上搜安卓使用NFC就可以看到介绍

private NfcAdapter mAdapter = null; // 定义NFC适配器

mAdapter = aultAdapter(getApplicationContext());

pi = ivity(this, 0, new Intent(this, getClass())

.addFlags(_ACTIVITY_SINGLE_TOP), 0);

tagDetected = new IntentFilter(_TECH_DISCOVERED);//.ACTION_TAG_DISCOVERED);

egory(RY_DEFAULT);

mTechLists = new String[][]{new String[]{e()}, new String[]{e()}};

if (mAdapter != null && !led()) {

xt(this, "NFC尚未开启", _SHORT).show();

}

3.因为我的NFC事件是在子线程中的,所以new了一个handle

private static class MyHandler extends Handler {

private final WeakReference mActivity;

public MyHandler(IDCardScannerActivity activity) {

mActivity = new WeakReference(activity);

}

@Override

public void handleMessage(Message msg) {

n(msg);

if (() == null) {

return;

}

if ( == 1002)

throw new RuntimeException();

else {

try {

().todo(msg);

} catch (FileNotFoundException e) {

tackTrace();

}

}

}

}

4.初始化读身份证类:

private OTGReadCardAPI ReadCardAPI; // 定义读身份证类

ReadCardAPI = new OTGReadCardAPI(getApplicationContext(), this, false); // 初始化类,第三个是回调地址,

第三个直接传false就可以了

// 设置服务器地址及端口

ArrayList twoCardServerlist = new ArrayList();

(new Serverinfo("", 8848));

verInfo(twoCardServerlist, null, bTestServer);

5.当手机检测到身份证靠近的时候,会回调onNewIntent,在这个里面直接 读身份证即可。但是为避免出现问题,我直接发送消息到 Handle里

面处理。

@Override

protected void onNewIntent(Intent intent) {

ntent(intent);

inintent = intent;

ptyMessageDelayed(1, 0);

}

6.读身份证,在MyHandler 中会调到todo里面,这里面是读身份证的操作

public void todo(Message msg) throws FileNotFoundException {

int tt = 0;

m_szProcess = "";

t("");

m_szAppKey = ing("AppKey", "");

int nnum = KeyUseNum(m_szAppKey);

if (nnum <= 0) nnum = 0;

t(f(nnum));

if (m_y() || nnum<=0)

{

regeditAppkey(true);

}

t(m_szAppKey);

if (!m_y() && nnum>0) { if ( == 1 || ==1005) { if ( == 1005) { inintent = null; } tt = dCard(m_szAppKey, null, inintent, neralCard, "",m_bAuthon); } if (m_bshow) { t(m_szUserInfo); } if (tt == 41) { if (m_berror) { setdialog("读卡失败!" + orInfo()); } else { int nerr = orCode(); if (nerr==-24997) { setdialog("此设备没有解码权限!"); } else setdialog("读卡失败!"); } t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); t(""); } if (tt == 90) { if (CardInfo().arrTwoIdPhoto != null) { kground(newBitmapDrawable(Bytes2Bimap(CardInfo().arrTwoIdPhoto))); } if (CardInfo().("J")) { t("港澳居民居住证"); t(CardInfo().szTwoOtherNO); t(CardInfo().szTwoSignNum); } else {

t("居民身份证");

t("");

t("");

}

t(CardInfo().());

t(CardInfo().());

t(CardInfo().());

t(CardInfo().());

t(CardInfo().() + "族");

t("中国");

t(CardInfo().());

t(CardInfo().ing(0, 4) + "-" +

CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8));

String startDate = CardInfo().ing(0, 4) +

"-" + CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8);

String endDate = "";

int nlen = CardInfo().f("长期");

if (nlen != -1) {

endDate = "长期";

} else {

endDate = CardInfo().ing(0, 4) + "-" +

CardInfo().ing(4, 6) + "-" +

CardInfo().ing(6, 8);

}

t(startDate + "~" + endDate);

//t("100");

e();

}

}

}

到此身份证就读取完了,当然 了第一次使用可以调用开发包自带的接口进行注册,注册也简单,只需要填写昵称和手机号,然后填入验证码就可

以了。

由于CSDN积分规则,需要的下载分越来越贵,特地上传到了上面两个地方可以下载到windows/linux/android三个平台的SDK及demo和源

码,免费送大家分享,欢迎一起学习探讨

发布评论

评论列表 (0)

  1. 暂无评论