我想使用以下代码格式化未使用的MIFARE Ultralight卡:
NdefFormatable formatable = NdefFormatable.get(tag);
if (formatable != null) {
String result = "Afifly";
try {
formatable.connect();
try {
formatable.format(new NdefMessage(new NdefRecord(NdefRecord.TNF_EMPTY, null, null, null)));
} catch (Exception e) {
// let the user know the tag refused to format
System.out.println("error ");//+getStackTrace(e));
result = "Fail 1";
}
} catch (Exception e) {
// let the user know the tag refused to connect
System.out.println("eeeerrror 2"+e);
result = "Fail 2";
} finally {
try {
formatable.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return;
}
但是在调用方法formatable.format(...)
时,它总是抛出IOException(没有任何有意义的消息)。
我尝试了几张其他牌,所有牌都有相同的结果。但是,例如,可以使用NXP TagWriter格式化这些卡。
我已经找到了问题/答案" Formatting a Mifare Ultralight C to NDEF",但此解决方案对我不起作用。我仍然得到相同的IOException。
标签的前四页(第0-3页)包含以下字节:
04 F1 E9 94 42 AB 4A 80 23 48 00 00 (all lock-bits cleared) 00 00 00 00 (no capability container)
因此,标签为空且未锁定。
答案 0 :(得分:3)
在空MIFARE Ultralight标记上调用IOException
时获得NdefFormatable.format()
的最可能原因是您的设备不支持"格式化" (即初始化为NFC论坛类型2标签)该类型的标签。如果是这种情况,那么您甚至看到NdefFormatable
技术显然是一个错误。
在这种情况下,您唯一的选择是手动执行格式化过程(有关详细信息,请参阅NFC论坛类型2标记操作规范)。这也是各种标签编写应用程序(例如NXP TagWriter)的功能。对于MIFARE Ultralight(MF0ICU1)标签(不要尝试将其用于更大的标签!),这样的事情可行:
NfcA nfcA = NfcA.get(tag);
if (nfcA != null) {
try {
nfcA.connect();
nfcA.transceive(new byte[] {
(byte)0xA2, // WRITE
(byte)0x03, // page = 3
(byte)0xE1, (byte)0x10, (byte)0x06, (byte)0x00 // capability container (mapping version 1.0, 48 bytes for data available, read/write allowed)
});
nfcA.transceive(new byte[] {
(byte)0xA2, // WRITE
(byte)0x04, // page = 4
(byte)0x03, (byte)0x00, (byte)0xFE, (byte)0x00 // empty NDEF TLV, Terminator TLV
});
} catch (Exception e) {
} finally {
try {
nfcA.close();
} catch (Exception e) {
}
}
}