使用Nfca为Android应用程序的TagLostException

时间:2013-03-26 14:17:30

标签: android tags nfc apdu

我目前正在为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上使用智能卡读卡器和软件时,这些命令正在运行。智能卡非空。

1 个答案:

答案 0 :(得分:3)

我希望该卡还有IsoDep技术可用吗?如果是这种情况,您应该使用它连接。您列出的其中一个命令看起来像ISO 7816-4 APDU以选择主文件。这应该与ISO 14443-4卡一起使用,这正是IsoDep技术所代表的。