EZ100PU USBスマートカードリーダーと新しい(クリア)SLE4428スマートカードを持っています。それらに数列を書きたいと思います。私は単純なJavaアプリケーションでそれをやろうとしています。これは、インターネットで入手可能な他のコードに基づく私のコードです。
public class Connection {
public static void main(String[] args) throws Exception {
TerminalFactory factory = TerminalFactory.getDefault();
CardTerminal terminal = terminals.get(1);
System.out.println("terminal: " + terminal.getName());
Card card = terminal.connect("*");
System.out.println("card: " + card);
CardChannel channel = card.getBasicChannel();
System.out.println("channel: " + channel.getChannelNumber());
System.out.println("protocol: "+card.getProtocol());
byte b[]=card.getATR().getBytes();
for(int i=0;i<b.length;i++)
System.out.print(b[i]);
// byte[] bytes = {(byte)0xFF, (byte)0x00, (byte)0xFF, (byte)0x00};
// ResponseAPDU r = channel.transmit(new CommandAPDU(bytes));
card.disconnect(false);
}
}
カードがリーダーの中にあると、常に「不明なプロトコル16」が表示されるため、問題が発生します。おそらくそのせいでカードに何も書けないので、やってみるといつもエラーになります。手伝って頂けますか?