我尝试通过NFC和Android从智能卡读取数据。
我有带有应用程序的智能卡。应用程序具有AID(应用程序ID)A0000006581010
我需要执行SELECT命令并读取结果。
我写方法:
private static final String SAMPLE_LOYALTY_CARD_AID = "F222222222";
private void performTransaction(Intent nfcIntent) {
Tag tagFromIntent = nfcIntent.getParcelableExtra(EXTRA_TAG);
NfcA mNfc = NfcA.get(tagFromIntent);
try {
mNfc.connect();
//I can read ID
byte[] id = mNfc.getTag().getId();
//I tried create SELECT command
byte[] selCommand = BuildSelectApdu(SAMPLE_LOYALTY_CARD_AID);
//I try send command to card
byte[] result = mNfc.transceive(selCommand);
//I get result == {106, -126}
} catch (IOException e) {
Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
} finally {
if (mNfc != null) {
try {
mNfc.close();
} catch (IOException e) {
Log.v("tag", "error closing the tag");
}
}
}
}
如何从智能卡上的concrete AID发出SELECT命令?
答案 0 :(得分:2)
SELECT是标准的APDU命令,您可以从Global Platform中找到定义它的规范。 从AID构建它是非常机械的:
00A40400 + AID lenght in hexadecimal + AID + 00
例如,对于AID为A0000006581010
的SELECT命令为:
00A4040007A000000658101000