4

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

4

1 回答 1

3

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

于 2013-03-26T14:58:57.947 回答