Android NFC开发教程(3): Mifare Tag读写示例

简介: 前面例子介绍了检测,读写NFC TAG开发的一般步骤,本例针对常用的Mifare Tag 具体说明。 Mifare Tag 可以有1K ,2K, 4K,其内存分区大同小异,下图给出了1K字节容量的Tag的内存分布:   数据分为16个区(Se...

前面例子介绍了检测,读写NFC TAG开发的一般步骤,本例针对常用的Mifare Tag 具体说明。

Mifare Tag 可以有1K ,2K, 4K,其内存分区大同小异,下图给出了1K字节容量的Tag的内存分布:

 .

数据分为16个区(Sector) ,每个区有4个块(Block) ,每个块可以存放16字节的数据,其大小为16 X 4 X 16 =1024 bytes

每个区最后一个块称为Trailer ,主要用来存放读写该区Block数据的Key ,可以有A,B两个Key,每个Key 长度为6个字节,缺省的Key值一般为全FF或是0. 由 MifareClassic.KEY_DEFAULT 定义。

因此读写Mifare Tag 首先需要有正确的Key值(起到保护的作用),如果鉴权成功

auth = mfc.authenticateSectorWithKeyA(j,
MifareClassic.KEY_DEFAULT);

然后才可以读写该区数据。

本例定义几个Mifare相关的类 MifareClassCard ,MifareSector, MifareBlock 和MifareKey 以方便读写Mifare Tag.

Android 系统来检测到NFC Tag, 将其封装成Tag类,存放到Intent的NfcAdapter.EXTRA_TAG Extra 数据包中,可以使用MifareClassic.get(Tag) 获取对象的 MifareClassic类。

[java]
Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); 
// 4) Get an instance of the Mifare classic card from this TAG  
// intent  
MifareClassic mfc = MifareClassic.get(tagFromIntent); 
Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
// 4) Get an instance of the Mifare classic card from this TAG
// intent
MifareClassic mfc = MifareClassic.get(tagFromIntent);
下面为读取Mifare card 的主要代码:

[java]
// 1) Parse the intent and get the action that triggered this intent  
String action = intent.getAction(); 
// 2) Check if it was triggered by a tag discovered interruption.  
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) { 
 // 3) Get an instance of the TAG from the NfcAdapter  
 Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); 
 // 4) Get an instance of the Mifare classic card from this TAG  
 // intent  
 MifareClassic mfc = MifareClassic.get(tagFromIntent); 
 MifareClassCard mifareClassCard=null; 
  
 try { // 5.1) Connect to card  
 mfc.connect(); 
 boolean auth = false; 
 // 5.2) and get the number of sectors this card has..and loop  
 // thru these sectors  
 int secCount = mfc.getSectorCount(); 
 mifareClassCard= new MifareClassCard(secCount); 
 int bCount = 0; 
 int bIndex = 0; 
 for (int j = 0; j  MifareSector mifareSector = new MifareSector(); 
 mifareSector.sectorIndex = j; 
 // 6.1) authenticate the sector  
 auth = mfc.authenticateSectorWithKeyA(j, 
 MifareClassic.KEY_DEFAULT); 
 mifareSector.authorized = auth; 
 if (auth) { 
 // 6.2) In each sector - get the block count  
 bCount = mfc.getBlockCountInSector(j); 
 bCount =Math.min(bCount, MifareSector.BLOCKCOUNT); 
 bIndex = mfc.sectorToBlock(j); 
 for (int i = 0; i   
 // 6.3) Read the block  
 byte []data = mfc.readBlock(bIndex); 
 MifareBlock mifareBlock = new MifareBlock(data); 
 mifareBlock.blockIndex = bIndex; 
 // 7) Convert the data into a string from Hex  
 // format.  
  
 bIndex++; 
 mifareSector.blocks[i] = mifareBlock; 
  
 } 
 mifareClassCard.setSector(mifareSector.sectorIndex, 
 mifareSector); 
 } else { // Authentication failed - Handle it  
  
 } 
 } 
 ArrayList blockData=new ArrayList(); 
 int blockIndex=0; 
 for(int i=0;i   
 MifareSector mifareSector=mifareClassCard.getSector(i); 
 for(int j=0;j  MifareBlock mifareBlock=mifareSector.blocks[j]; 
 byte []data=mifareBlock.getData(); 
 blockData.add("Block "+ blockIndex++ +" : "+ 
 Converter.getHexString(data, data.length)); 
 } 
 } 
 String []contents=new String[blockData.size()]; 
 blockData.toArray(contents); 
 setListAdapter(new ArrayAdapter(this, 
 android.R.layout.simple_list_item_1, contents)); 
 getListView().setTextFilterEnabled(true); 
  
 } catch (IOException e) { 
 Log.e(TAG, e.getLocalizedMessage()); 
 showAlert(3); 
 }finally{ 
  
 if(mifareClassCard!=null){ 
 mifareClassCard.debugPrint(); 
 } 
 } 
}// End of method 
// 1) Parse the intent and get the action that triggered this intent
String action = intent.getAction();
// 2) Check if it was triggered by a tag discovered interruption.
if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)) {
 // 3) Get an instance of the TAG from the NfcAdapter
 Tag tagFromIntent = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
 // 4) Get an instance of the Mifare classic card from this TAG
 // intent
 MifareClassic mfc = MifareClassic.get(tagFromIntent);
 MifareClassCard mifareClassCard=null;
 
 try { // 5.1) Connect to card
 mfc.connect();
 boolean auth = false;
 // 5.2) and get the number of sectors this card has..and loop
 // thru these sectors
 int secCount = mfc.getSectorCount();
 mifareClassCard= new MifareClassCard(secCount);
 int bCount = 0;
 int bIndex = 0;
 for (int j = 0; j  MifareSector mifareSector = new MifareSector();
 mifareSector.sectorIndex = j;
 // 6.1) authenticate the sector
 auth = mfc.authenticateSectorWithKeyA(j,
 MifareClassic.KEY_DEFAULT);
 mifareSector.authorized = auth;
 if (auth) {
 // 6.2) In each sector - get the block count
 bCount = mfc.getBlockCountInSector(j);
 bCount =Math.min(bCount, MifareSector.BLOCKCOUNT);
 bIndex = mfc.sectorToBlock(j);
 for (int i = 0; i  
 // 6.3) Read the block
 byte []data = mfc.readBlock(bIndex);
 MifareBlock mifareBlock = new MifareBlock(data);
 mifareBlock.blockIndex = bIndex;
 // 7) Convert the data into a string from Hex
 // format.
 
 bIndex++;
 mifareSector.blocks[i] = mifareBlock;
 
 }
 mifareClassCard.setSector(mifareSector.sectorIndex,
 mifareSector);
 } else { // Authentication failed - Handle it
 
 }
 }
 ArrayList blockData=new ArrayList();
 int blockIndex=0;
 for(int i=0;i  
 MifareSector mifareSector=mifareClassCard.getSector(i);
 for(int j=0;j  MifareBlock mifareBlock=mifareSector.blocks[j];
 byte []data=mifareBlock.getData();
 blockData.add("Block "+ blockIndex++ +" : "+
 Converter.getHexString(data, data.length));
 }
 }
 String []contents=new String[blockData.size()];
 blockData.toArray(contents);
 setListAdapter(new ArrayAdapter(this,
 android.R.layout.simple_list_item_1, contents));
 getListView().setTextFilterEnabled(true);
 
 } catch (IOException e) {
 Log.e(TAG, e.getLocalizedMessage());
 showAlert(3);
 }finally{
 
 if(mifareClassCard!=null){
 mifareClassCard.debugPrint();
 }
 }
}// End of method

.

本例下载:http://up.2cto.com/2012/0517/20120517093850748.zip

目录
相关文章
|
1天前
|
XML 存储 Java
探索安卓开发之旅:从新手到专家
【10月更文挑战第35天】在数字化时代,安卓应用的开发成为了一个热门话题。本文旨在通过浅显易懂的语言,带领初学者了解安卓开发的基础知识,同时为有一定经验的开发者提供进阶技巧。我们将一起探讨如何从零开始构建第一个安卓应用,并逐步深入到性能优化和高级功能的实现。无论你是编程新手还是希望提升技能的开发者,这篇文章都将为你提供有价值的指导和灵感。
|
1天前
|
Android开发
布谷语音软件开发:android端语音软件搭建开发教程
语音软件搭建android端语音软件开发教程!
|
9天前
|
编解码 Java Android开发
通义灵码:在安卓开发中提升工作效率的真实应用案例
本文介绍了通义灵码在安卓开发中的应用。作为一名97年的聋人开发者,我在2024年Google Gemma竞赛中获得了冠军,拿下了很多项目竞赛奖励,通义灵码成为我的得力助手。文章详细展示了如何安装通义灵码插件,并通过多个实例说明其在适配国际语言、多种分辨率、业务逻辑开发和编程语言转换等方面的应用,显著提高了开发效率和准确性。
|
8天前
|
Android开发 开发者 UED
安卓开发中自定义View的实现与性能优化
【10月更文挑战第28天】在安卓开发领域,自定义View是提升应用界面独特性和用户体验的重要手段。本文将深入探讨如何高效地创建和管理自定义View,以及如何通过代码和性能调优来确保流畅的交互体验。我们将一起学习自定义View的生命周期、绘图基础和事件处理,进而探索内存和布局优化技巧,最终实现既美观又高效的安卓界面。
21 5
|
6天前
|
JSON Java Android开发
探索安卓开发之旅:打造你的第一个天气应用
【10月更文挑战第30天】在这个数字时代,掌握移动应用开发技能无疑是进入IT行业的敲门砖。本文将引导你开启安卓开发的奇妙之旅,通过构建一个简易的天气应用来实践你的编程技能。无论你是初学者还是有一定经验的开发者,这篇文章都将成为你宝贵的学习资源。我们将一步步地深入到安卓开发的世界中,从搭建开发环境到实现核心功能,每个环节都充满了发现和创造的乐趣。让我们开始吧,一起在代码的海洋中航行!
|
7天前
|
缓存 数据库 Android开发
安卓开发中的性能优化技巧
【10月更文挑战第29天】在移动应用的海洋中,性能是船只能否破浪前行的关键。本文将深入探讨安卓开发中的性能优化策略,从代码层面到系统层面,揭示如何让应用运行得更快、更流畅。我们将以实际案例和最佳实践为灯塔,引领开发者避开性能瓶颈的暗礁。
23 3
|
10天前
|
存储 IDE 开发工具
探索Android开发之旅:从新手到专家
【10月更文挑战第26天】在这篇文章中,我们将一起踏上一段激动人心的旅程,探索如何在Android平台上从零开始,最终成为一名熟练的开发者。通过简单易懂的语言和实际代码示例,本文将引导你了解Android开发的基础知识、关键概念以及如何实现一个基本的应用程序。无论你是编程新手还是希望扩展你的技术栈,这篇文章都将为你提供价值和启发。让我们开始吧!
|
4天前
|
移动开发 Java Android开发
探索Android与iOS开发的差异性与互联性
【10月更文挑战第32天】在移动开发的大潮中,Android和iOS两大平台各领风骚。本文将深入浅出地探讨这两个平台的开发差异,并通过实际代码示例,展示如何在各自平台上实现相似的功能。我们将从开发环境、编程语言、用户界面设计、性能优化等多个角度进行对比分析,旨在为开发者提供跨平台开发的实用指南。
25 0
|
14天前
|
搜索推荐 Android开发 UED
安卓开发中的自定义视图:打造个性化用户界面
【10月更文挑战第22天】在安卓应用的海洋中,如何让你的应用脱颖而出?一个独特且直观的用户界面(UI)至关重要。本文将引导你通过自定义视图来打造个性化的用户体验,从基础的视图绘制到触摸事件的处理,我们将一步步深入探讨。准备好了吗?让我们开始吧!
下一篇
无影云桌面