安卓系统:javax.smartcardious库



我需要通过NFC与带有Topaz标签的Android移动设备Nexus S进行通信。我已经完成了从卡中读取数据的java程序,但它使用了javax.smartcardiojava类,这在Android上是不可用的。我如何导入这个类以使其在Android项目上可用?

非常感谢。

为了在Android上直接与标签通信,您必须从一个新的NFC意图(NDEF_DISCOVERED、TECH_DISCOVERED、tag_DISCOVERED)中获得对检测到的标签的引用。设置一个活动以接收这些事件,然后提取Tag对象;

Tag tag = getIntent().getParcelableExtra(NfcAdapter.EXTRA_TAG);
MifareClassic mifareClassicTag = MifareClassic .get(tag);
mifareClassicTag.connect();
// The transceive command sends command directly to the tag. Internally it wraps the given command in a  direct transmit command and sends it to the NFC chip which forwards it to the tag
mifareClassicTag.transceive(...);

有关android上NFC的更多信息,请参阅开发者文档http://developer.android.com/guide/topics/nfc/index.html

相关内容

  • 没有找到相关文章

最新更新