2

我正在开发一个 android 应用程序来写入 nfc 标签的特定内存位置。而且我需要通过读取 NFC 标签来获取 NDEF 消息有效负载的最大大小,以便我可以在该范围内定义内存位置。

我知道它可以通过下面的代码获得整个 ndef 内存大小:

Ndef ndef = Ndef.get(tag); int size = ndef.getMaxSize();

有什么方法可以获得最大有效载荷大小吗?

任何帮助将不胜感激!

4

2 回答 2

5

如果我对您的理解正确,您想知道可以在 NDEF 消息中的单个 NDEF 记录中发送的最大数据量。

答案取决于您使用的 NDEF 记录格式。我正在使用外部记录类型,它的有效负载最后只有一堆字节。据我所知,没有简单的方法可以得到它,因为它取决于您个人的域/类型字段长度,所以我实际上创建了一个“空”记录(实际上,其中有一些数据是为了获取更长的字段格式),然后从最大值中减去其长度。

最大整体 NDEF 消息长度由兼容性容器指定,在第一次接触时从标签或设备读取,这因标签而异。Android 让我们可以使用ndefTag.getMaxSize();ndefTag您从意图中获得的标签在哪里)

这是我正在使用的方法(我允许不同的发送和接收长度):

//here we make some sample transmissions that we convert to work out the max length of data we can send
int test_payload_len = 300; //need to make this >255 to ensure the longer length field format is used
NdefMessage testDeviceNdef = new NdefMessage(NdefRecord.createExternal(CommandConsts.deviceDomain, CommandConsts.deviceType, test_data)); //the domain and type strings are defined elsewhere
NdefMessage testTerminalNdef = new NdefMessage(NdefRecord.createExternal(CommandConsts.terminalDomain, CommandConsts.terminalType, test_data));

maxNdefDeviceSendLength = ndefTag.getMaxSize() - (testDeviceNdef.getByteArrayLength() - test_payload_len); 
maxNdefTerminalSendLength = ndefTag.getMaxSize() - (testTerminalNdef.getByteArrayLength() - test_payload_len)
于 2013-05-05T06:44:32.783 回答
0

规范允许的最大有效载荷大小为 2^32-1

http://developer.android.com/reference/android/nfc/NdefRecord.html

您可以使用getPayload获取可变长度的有效负载及其大小

于 2012-10-15T02:20:35.413 回答