当我尝试在Mifare经典1k卡中写入数据时,在具有android 2.3.3 API级别10的Nexus S上,我遇到此错误。收发失败。 我的代码是
private View.OnClickListener write_butClickListener =new View.OnClickListener() {
@Override
public void onClick(View v) {
IntentFilter ndef=new IntentFilter(NfcAdapter.ACTION_TECH_DISCOVERED );
try{
ndef.addDataType("*/*");
}catch(MalformedMimeTypeException e){
throw new RuntimeException("fail",e);
}
mFilters=new IntentFilter[]{ndef,};
// Setup a tech list for all NfcF tags
mTechLists = new String[][] { new String[] { MifareClassic.class
.getName() } };
Intent intent=getIntent();
String action=intent.getAction();
if(NfcAdapter.ACTION_TECH_DISCOVERED.equals(action) ){
String msg="Discovered Tag with Intent " + intent;
status_Data.setText(msg);
Tag tagFromintent=intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
MifareClassic mfc=MifareClassic.get(tagFromintent);
byte[] data;
try{
mfc.connect();
boolean auth = false;
String cardData = null;
status_Data.setText("Authenticating the Tag..");
auth = mfc.authenticateSectorWithKeyA(1,
MifareClassic.KEY_DEFAULT);
if (auth){
status_Data.setText("Authenticated");
String text = "Hello, World!";
String lang = "en";
byte[] textBytes = text.getBytes();
byte[] langBytes = lang.getBytes("US-ASCII");
int langLength = langBytes.length;
int textLength = textBytes.length;
byte[] payload = new byte[1 + langLength + textLength];
// set status byte (see NDEF spec for actual bits)
payload[0] = (byte) langLength;
// copy langbytes and textbytes into payload
System.arraycopy(langBytes, 0, payload, 1, langLength);
System.arraycopy(textBytes, 0, payload, 1 + langLength, textLength);
if (!mfc.isConnected()) mfc.connect();
mfc.writeBlock(1, payload);
mfc.close();
showMessage("written");
}else{
showMessage("Authetication Failed");
status_Data.setText("");
}
}
catch(IOException e){
status_Data.setText(e.toString());
}
}else{
showMessage("Nothing to read");
}
}
};
任何指针
答案 0 :(得分:0)
您似乎正在尝试将NDEF数据直接写入mifare卡的低级块。
这不会有两个原因:
在您写入mifare块之前,您必须使用authenticateSectorWithKeyA或authenticateSectorWithKeyB函数对您自己进行身份验证以进行写访问。 NIFF格式的mifare卡的密钥可在MifareClassic类中找到。
您不能直接将NDEF数据写入卡中,并期望其他应用程序能够解释数据。 NDEF是一种用户格式。写入卡的数据包含额外的数据,如应用程序目录,大小信息等。
我建议你使用通用Tag接口的NDEF写功能。这些将为您完成所有额外的格式化。
如果您想尝试低级写入卡,我建议您先下载mifare数据表并阅读哪些扇区和块。您还必须了解芯片的身份验证和安全概念。否则,很容易意外地覆盖认证块并破坏标签。