当前位置: 首页 > 编程笔记 >

Android实现读取NFC卡卡号示例

夏侯自珍
2023-03-14
本文向大家介绍Android实现读取NFC卡卡号示例,包括了Android实现读取NFC卡卡号示例的使用技巧和注意事项,需要的朋友参考一下

Android实现读取NFC卡卡号示例,具体如下:

1.权限

  <uses-permission android:name="android.permission.NFC" />
    <uses-feature
    android:name="android.hardware.nfc"
    android:required="true" />

2.注册(静态)

      <intent-filter>
        <action android:name="android.nfc.action.TAG_DISCOVERED" />
        <data android:mimeType="text/plain" />
      </intent-filter>

3.Activity

初始化

    //初始化NfcAdapter
    mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
        // 初始化PendingIntent,当有NFC设备连接上的时候,就交给当前Activity处理
    pi = PendingIntent.getActivity(this, 0, new Intent(this, getClass())
        .addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);

启动

  @Override
  protected void onResume() {
    super.onResume();
    mNfcAdapter.enableForegroundDispatch(this, pi, null, null); //启动
  }

获取数据

  @Override
  protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    // 当前app正在前端界面运行,这个时候有intent发送过来,那么系统就会调用onNewIntent回调方法,将intent传送过来
    // 我们只需要在这里检验这个intent是否是NFC相关的intent,如果是,就调用处理方法
    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
      processIntent(intent);
    }
  }

解析

  /**
   * Parses the NDEF Message from the intent and prints to the TextView
   */
  private void processIntent(Intent intent) {
    //取出封装在intent中的TAG
    Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
    String CardId =ByteArrayToHexString(tagFromIntent.getId());
  }
private String ByteArrayToHexString(byte[] inarray) {
    int i, j, in;
    String[] hex = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A",
        "B", "C", "D", "E", "F" };
    String out = "";


    for (j = 0; j < inarray.length; ++j) {
      in = (int) inarray[j] & 0xff;
      i = (in >> 4) & 0x0f;
      out += hex[i];
      i = in & 0x0f;
      out += hex[i];
    }
    return out;
  }

4.完整参考

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="cn.com.jslh.zjcdprogrect">

  <uses-permission android:name="android.permission.NFC" />
  <uses-permission android:name="android.permission.INTERNET" />

  <uses-feature
    android:name="android.hardware.nfc"
    android:required="true" />

  <application
    android:name=".common.MyApplication"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".LoginActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>
    <activity android:name=".saoka.WorkActivity">
      <intent-filter>
        <action android:name="android.nfc.action.TAG_DISCOVERED" />
        <data android:mimeType="text/plain" />
      </intent-filter>
      <!--<meta-data android:name="android.nfc.action.TECH_DISCOVERED" android:resource="@xml/nfc_tech_filter" />-->
    </activity>
  </application>

</manifest>

package cn.com.jslh.zjcdprogrect.saoka;

import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.nfc.NfcAdapter;
import android.nfc.Tag;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;

import cn.com.jslh.zjcdprogrect.R;

public class WorkActivity extends AppCompatActivity {

  private NfcAdapter mNfcAdapter;
  private PendingIntent pi;
  private IntentFilter tagDetected;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_work);

    //初始化NfcAdapter
    mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
    //初始化PendingIntent
    // 初始化PendingIntent,当有NFC设备连接上的时候,就交给当前Activity处理
    pi = PendingIntent.getActivity(this, 0, new Intent(this, getClass())
        .addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP), 0);
    // 新建IntentFilter,使用的是第二种的过滤机制
//    tagDetected = new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED);
//    tagDetected.addCategory(Intent.CATEGORY_DEFAULT);
  }

  @Override
  protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    // 当前app正在前端界面运行,这个时候有intent发送过来,那么系统就会调用onNewIntent回调方法,将intent传送过来
    // 我们只需要在这里检验这个intent是否是NFC相关的intent,如果是,就调用处理方法
    if (NfcAdapter.ACTION_TAG_DISCOVERED.equals(intent.getAction())) {
      processIntent(intent);
    }
  }

  @Override
  protected void onResume() {
    super.onResume();
    mNfcAdapter.enableForegroundDispatch(this, pi, null, null);
  }

  /**
   * Parses the NDEF Message from the intent and prints to the TextView
   */
  private void processIntent(Intent intent) {
    //取出封装在intent中的TAG
    Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
    String CardId =ByteArrayToHexString(tagFromIntent.getId());
  }

  public static void startActivity(Context context){
    Intent intent = new Intent();
    intent.setClass(context,WorkActivity.class);
    context.startActivity(intent);
  }

  private String ByteArrayToHexString(byte[] inarray) {
    int i, j, in;
    String[] hex = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A",
        "B", "C", "D", "E", "F" };
    String out = "";


    for (j = 0; j < inarray.length; ++j) {
      in = (int) inarray[j] & 0xff;
      i = (in >> 4) & 0x0f;
      out += hex[i];
      i = in & 0x0f;
      out += hex[i];
    }
    return out;
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 我开发了一个系统,可以使用带有PN532芯片的阅读器读取NFC标签。它工作正常。我可以阅读米费尔经典和米费尔超轻标签。 现在我想使用带有Android 4.4.2的Nexus平板电脑来模拟标签。我没有Android开发经验,但我认为这是可能的。 我已经在Nexus平板电脑中设置了NFC通信,但我想我必须下载或编写一些应用程序来模拟Tag和NDEF通信。 最简单的方法是什么?

  • 我正在尝试使用NFC读卡器库读取Mifare超轻型卡的内容。 我对NFC完全陌生,我正在使用这个github存储库开始。 此存储库中的代码允许检测检测到哪种类型的卡(Mifare,Mifare超轻量级......)并读取卡的UID。我添加了以下代码以读取Mifare超轻型卡的内容: 我有一张卡片,上面写着“Hello world”,当我读到它时,上面的代码会打印以下字节: 所以我从我的卡片上读了一

  • 我有一个Mifare Ultralight EV1卡,根据文档,它支持7字节UID,但当我使用缓冲区读取它时。从([0xFF,0xCA,0x00,0x00,0x00]中,我只能从APDT命令中获取4个字节。 关于如何获得完整的7字节的任何点,当我使用Android或iOS阅读器他们获取完整的7字节UID,也许扫描仪不支持它? 这是我正在使用的代码: 这里也作为 Pastebin: https://

  • 我正在使用NFC读取Mifare Classic 1K卡。 该代码适用于所有Android5.0及以下版本的Android设备,但当我在Android5.1设备上测试代码时,它不起作用。 我的代码, 当我在Android5.1中扫描卡片时,返回,否则在5.1以下的版本中,它可以正常工作。

  • 我有一台LG D320nAndroid手机,elechouse的PN532 nfc模块和斯托尔曼的NFCPlayer,我可以用它正确阅读NFC标签。 我在这里测试了一个样本:https://github.com/grundid/host-card-emulation-sample 当我把一台Android设备读作标签,另一台Android设备读作阅读器时,它工作得很好。但我无法通过NFCPlaye

  • 我正在使用以下命令从Mifare超轻型标签读取二进制块: 但是现在我想使用ACR1252 NFC阅读器精确地执行存储在Mifare Ultralight标签中的NDEF消息。我必须使用哪个命令来获取完整的 NDEF 消息?NDEF 消息存储在标签中的哪个位置?