我目前正在为 NFC 智能手机开发一个 Android 应用程序(在 JAVA 中)。我正在尝试与 Nfca 标签通信,但TagLostException
无论我通过transceive(byte[])
. 标签与设备连接良好。
这是重要的一段代码:
public void onNewIntent(Intent intent) {
setIntent(intent);
tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); // get the tag object for the discovered tag
nfca = NfcA.get(tag); // try and get the instance for this tag
if(nfca == null) {
Alert("tag","the tag is not NfcA");
} else {
new Thread(new Runnable() {
@Override
public void run() {
handler.sendEmptyMessage(1); //this will call handleMessage function and handle all error
}
}).start();
}
}
final Handler handler = new Handler() {
//handles the connection with the tag
@Override
public void handleMessage(final Message msgs) {
// try to connect to the NfcA tag
try {
nfca.connect();
} catch(IOException e) {
Alert("nfca.connect","cannot open connection ><");
}
Toast.makeText(NfcaActivity.this, "tag connected", Toast.LENGTH_LONG).show();
}
};
try {
//nfca.setTimeout(3000);
pageBuffer = nfca.transceive(command);
} catch(IOException e) {
Alert("pageBuffer","cannot perform transceive "+ e.toString());
} catch(Exception e) {
Alert("exception!", e.toString());
}
我正在尝试使用以下命令:{00 CA 42 08 00}
或者{00 A4 00 00 02 3F00}
但具有相同的结果。
当我在我的 PC 上使用智能卡读卡器和软件时,这些命令正在工作。智能卡非空。