The API is defined by classes in the package javax.smartcardio
. They can be classified as follows:
// show the list of available terminals TerminalFactory factory = TerminalFactory.getDefault(); List<CardTerminal> terminals = factory.terminals().list(); System.out.println("Terminals: " + terminals); // get the first terminal CardTerminal terminal = terminals.get(0); // establish a connection with the card Card card = terminal.connect("T=0"); System.out.println("card: " + card); CardChannel channel = card.getBasicChannel(); ResponseAPDU r = channel.transmit(new CommandAPDU(c1)); System.out.println("response: " + toString(r.getBytes())); // disconnect card.disconnect(false);
Class | Description |
---|---|
ATR | A Smart Card's answer-to-reset bytes. |
Card | A Smart Card with which a connection has been established. |
CardChannel | A logical channel connection to a Smart Card. |
CardException | Exception for errors that occur during communication with the Smart Card stack or the card itself. |
CardNotPresentException | Exception thrown when an application tries to establish a connection with a terminal that has no card present. |
CardPermission | A permission for Smart Card operations. |
CardTerminal | A Smart Card terminal, sometimes referred to as a Smart Card Reader. |
CardTerminals | The set of terminals supported by a TerminalFactory. |
CardTerminals.State | Enumeration of attributes of a CardTerminal. |
CommandAPDU | A command APDU following the structure defined in ISO/IEC 7816-4. |
ResponseAPDU | A response APDU as defined in ISO/IEC 7816-4. |
TerminalFactory | A factory for CardTerminal objects. |
TerminalFactorySpi | The TerminalFactorySpi class defines the service provider interface. |
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.smartcardio/javax/smartcardio/package-summary.html