1

NfcA标准中有一个android.nfc.tech.IsoDep类。它有一个方法叫做:getHistoricalBytes(). 如何在NfcV标准中获得此功能?IsoDep类在这里不起作用。有任何想法吗?帮助将不胜感激。

4

1 回答 1

3

NfcV (ISO15693) 技术没有 HistoricalBytes 之类的东西。HistoricalBytes 仅存在于 NfcA (ISO14443-A) 标准中。

您可以从 NfcV 标签中读取的唯一静态内容是 UID 和 DSF-ID(数据结构格式标识符,通常不使用)。您可以通过将标签对象转换为 NfcV 对象来获取它,然后调用 getDsfID()

http://developer.android.com/reference/android/nfc/tech/NfcV.html

于 2013-02-25T09:20:05.930 回答