gpt4 book ai didi

android - "IsoDep.get(tag)"调试时返回null

转载 作者:行者123 更新时间:2023-11-29 14:16:05 24 4
gpt4 key购买 nike

谁能告诉我这个功能背后的“科学”

 `IsoDep.get(tag)` 

因为它返回 null 甚至标签被正确读取。我在 eclipse 中运行 android 应用程序。

最佳答案

执行以下步骤。

1) 获取 NFC 技术标签,即使用 tag.getTechList() 方法并不难找到。

2)假设设备只支持一种技术标签,比如NfcF

3)然后像下面一样为 NfcF 使用 android 类

   NfcF mifare = NfcF.get(tag);
try {
mifare.connect();
if(mifare.isConnected()){
byte[] historicalData=mifare.getManufacturer();
return new String(historicalData, Charset.forName("US-ASCII"));
}

} catch (IOException e) {
Log.e("Deepak", "IOException while writing MifareUltralight message...", e);
}

希望对您有所帮助。 :)

享受编码...

关于android - "IsoDep.get(tag)"调试时返回null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11333074/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com