91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android NFC開發中Mifare Tag讀寫的示例分析

發布時間:2021-11-26 11:40:52 來源:億速云 閱讀:299 作者:柒染 欄目:移動開發

本篇文章為大家展示了Android NFC開發中Mifare Tag讀寫的示例分析,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

針對常用的Mifare Tag具體說明。

Mifare Tag 可以有1K ,2K, 4K,其內存分區大同小異,下圖給出了1K字節容量的Tag的內存分布:

Android NFC開發中Mifare 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類。

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 的主要代碼:

// 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 < secCount; 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 < bCount; 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<String> blockData=new ArrayList<String>();  int blockIndex=0;  for(int i=0;i<secCount;i++){    MifareSector mifareSector=mifareClassCard.getSector(i);  for(int j=0;j<MifareSector.BLOCKCOUNT;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<String>(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();  }  }  }

運行結果:

Android NFC開發中Mifare Tag讀寫的示例分析

上述內容就是Android NFC開發中Mifare Tag讀寫的示例分析,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

普宁市| 绩溪县| 莱州市| 那曲县| 耿马| 甘谷县| 耒阳市| 兴城市| 河东区| 廉江市| 阿瓦提县| 富源县| 辽阳市| 桐梓县| 嘉义市| 凤城市| 抚松县| 石门县| 湖南省| 丹江口市| 潍坊市| 旌德县| 潜江市| 大渡口区| 曲麻莱县| 昌平区| 山阴县| 收藏| 盐亭县| 明溪县| 靖宇县| 金阳县| 神农架林区| 杭锦后旗| 沧源| 微山县| 固安县| 罗定市| 景宁| 买车| 南汇区|