getATR() 不会在 javax.smartcardio 中重置智能卡
Posted
技术标签:
【中文标题】getATR() 不会在 javax.smartcardio 中重置智能卡【英文标题】:getATR() does not reset the smart card in javax.smartcardio 【发布时间】:2013-07-03 16:19:59 【问题描述】:我正在使用javax.smartcardio
包为带有Java 的智能卡编写一个小型应用程序,但我的ATR(重置答案)有一些问题。 card.getATR()
方法不会重置卡。它返回 ATR 字节,但不会将卡返回到 MF 状态。
这是我的例子:
TerminalFactory factory = TerminalFactory.getDefault();
List<CardTerminal> terminals = factory.terminals().list();
// get the first terminal
CardTerminal terminal = terminals.get(0);
// establish a connection with the card
Card card = terminal.connect("T=0");
ATR atr = card.getATR(); //atr.getBytes() <- correct
CardChannel channel = card.getBasicChannel();
ResponseAPDU r;
// STEP 1. select file in MF
r = channel.transmit(new CommandAPDU(new byte[]0,(byte)0xA4,(byte)0x02,(byte)0x0C,(byte)0x02,0,(byte)0x02,0));
// r.getBytes() == 90 00 <- correct
// STEP 2. select DF
r = channel.transmit(new CommandAPDU(new byte[]0,(byte)0xA4,(byte)0x04,(byte)0x0C,(byte)0x02,(byte)0x05,0));
// r.getBytes() == 90 00 <- correct
atr = card.getATR(); // answer to reset
// STEP 3. select file in MF, as in STEP 1
r = channel.transmit(new CommandAPDU(new byte[]0,(byte)0xA4,(byte)0x02,(byte)0x0C,(byte)0x02,0,(byte)0x02,0));
// r.getBytes() == 6A 82 <- fail, not found
card.disconnect(false);
我的错误在哪里?或者我怎样才能重置卡?
【问题讨论】:
欢迎来到 ***,Ro1 :) 感谢指正。下次我就知道了;) 【参考方案1】:Card.getATR()
没有指定它重置卡。它只是返回从卡请求的 ATR。您可能应该改用disconnect(true)
,然后重新连接到卡。
【讨论】:
以上是关于getATR() 不会在 javax.smartcardio 中重置智能卡的主要内容,如果未能解决你的问题,请参考以下文章
导航栏不会根据路由条件在 app.js 中呈现。路由更改时不会触发 Useeffect
如何确保代码不会被多次调用,但不会像 dispatch_once 那样在整个程序执行中阻塞它?
当应用程序在 iOS 10 的前台时,不会调用“willPresent 通知”并且本地通知不会显示