简体   繁体   English

Javacard 如何在不从 CardImpl.class 中的 checkState() 中引发异常的情况下移除和重新插入卡

[英]Javacard how to remove and reinsert card without raising exception from checkState() in CardImpl.class

I'm having trouble finding the solution to this problem in my program: I create and personalize a JCOP card with the JMRTD library, but, after I finish, send the close command to the service, and insert the card again, any attempt to do anything just returns me that the card was disconnected.我在我的程序中找不到这个问题的解决方案:我使用 JMRTD 库创建并个性化了 JCOP 卡,但是,在我完成后,将关闭命令发送到服务,然后再次插入卡,任何尝试做任何事情都会告诉我卡已断开连接。 Am I missing someway to reset the flag?我错过了重置标志的方法吗?

Notes about my code: ControlledDialog as the name suggests is a programatically controlled dialog so i can open and close it in specific parts of the code.关于我的代码的说明: ControlledDialog 顾名思义是一个程序控制的对话框,因此我可以在代码的特定部分打开和关闭它。

Thanks for any help!谢谢你的帮助!

My CardConnection class:我的 CardConnection 类:

package util;

import UI.MainPanel;
import UI.VerifyPanel;
import java.security.Security;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.smartcardio.CardException;
import javax.smartcardio.CardNotPresentException;
import javax.smartcardio.CardTerminal;
import javax.smartcardio.TerminalFactory;
import net.sf.scuba.smartcards.CardServiceException;
import net.sf.scuba.smartcards.TerminalCardService;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import org.jmrtd.PassportService;

public class CardConnection {

    static CardTerminal reader;
    static PassportService service;

    public static PassportService connectPassportService() throws CardException, CardServiceException {

        //Encontra-se a factory
        TerminalFactory terminal = TerminalFactory.getDefault();

        //listam-se os terminais
        List<CardTerminal> readers = terminal.terminals().list();

        if (readers.isEmpty()) {
            System.out.println("No Readers Found");
            System.exit(-1);
        }

        //escolhe-se o primeiro
        reader = readers.get(0);

        if (GlobalFlags.DEBUG) {
            System.err.println("Reader: " + reader);

            System.err.println("Por favor insira um cartão");
        }

        for (int i = 0; i < 10 && !reader.isCardPresent(); i++) {
            ControlledDialog.showMessageDialog("Por favor insira um cartão " + i, "Início");
            reader.waitForCardPresent(1000);
            System.err.println("Cartão " + (reader.isCardPresent() ? "" : "não ") + "conectado " + i);
        }
        try {
            if (reader.isCardPresent()) {

                service = new PassportService(new TerminalCardService(reader));
                service.open();
                service.sendSelectApplet(false);
                BouncyCastleProvider provider = new BouncyCastleProvider();
                Security.addProvider(provider);

            } else {
                throw new CardNotPresentException("Cartão não encontrado");
            }
        } finally {
            ControlledDialog.closeMessageDialog();
        }
        return service;
    }

    public static void closeConnection() {

        if (service == null) {
            return;
        }
        service.close();

        try {

            if (reader.isCardPresent()) {
                if (GlobalFlags.DEBUG) {
                    System.err.println("Por favor retire o cartão");
                }
                ControlledDialog.showMessageDialog("Por favor retire o cartão", "Fim");
            }

            while (reader.isCardPresent()) {
                System.out.println("Remova o cartão atual");
                reader.waitForCardAbsent(100000);
            }

            ControlledDialog.closeMessageDialog();

        } catch (CardException ex) {
            Logger.getLogger(VerifyPanel.class.getName()).log(Level.SEVERE, null, ex);
        }

        reader = null;
        service = null;

    }

}

I don't really know how to remove a question because there is not enough information here to what was happening.我真的不知道如何删除一个问题,因为这里没有足够的信息来说明正在发生的事情。 After careful debugging by printing the hashcode of the object calling each function, i discovered that the reason for that problem was the fact that I did not update the "service" field of the object calling these functions, and therefore, using the service with the disconnected card instead of the newly created one.通过打印调用每个函数的对象的哈希码进行仔细调试后,我发现该问题的原因是我没有更新调用这些函数的对象的“服务”字段,因此,将服务与断开连接的卡而不是新创建的卡。 Thanks for the comprehension!谢谢理解!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM