有人可以告诉我如何使用java卡读取智能卡中的数据吗?我有这个代码我正在使用java卡2.2

发布于 2024-12-18 08:27:48 字数 451 浏览 3 评论 0原文

我是java卡的新手。

我有这段代码......所以请告诉我如何使用java卡从智能卡读取数据

        private void readName(APDU apdu) throws ISOException
    {
      byte[] apduBuffer = apdu.getBuffer();
      for (byte i=0; i<userName.length; i++)
      {
        apduBuffer[5+i] = userName[(byte)i] ;
      }
      apdu.setOutgoing();
      apdu.setOutgoingLength((short)userName.length);
      apdu.sendBytes((short)5, (short)userName.length);
    }

I am new to java card.

i have this code.....so please tell me how to read data from smart card using java card

        private void readName(APDU apdu) throws ISOException
    {
      byte[] apduBuffer = apdu.getBuffer();
      for (byte i=0; i<userName.length; i++)
      {
        apduBuffer[5+i] = userName[(byte)i] ;
      }
      apdu.setOutgoing();
      apdu.setOutgoingLength((short)userName.length);
      apdu.sendBytes((short)5, (short)userName.length);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蝶舞 2024-12-25 08:27:48

从智能卡中的文件读取数据的常见机制是:

  1. 选择文件(EF),遵循规则,不能像台式机文件系统中那样盲目选择
  2. 根据EF类型发送读取二进制/记录(读取二进制为透明EF ,读取线性固定/循环 EF 的记录)
  3. 发送 get 响应以获取 EF 内容

The common mechanism to read data from files in smart card is:

  1. select the file (EF), follow the rules, you can't blindly select as in desktop computer filesystem
  2. send read binary/record depending on EF type (read binary for transparent EF, read record for linear fixed/cyclic EF)
  3. send get response to get the EF contents
烟花易冷人易散 2024-12-25 08:27:48

我觉得你可以找一个集成开发环境来写你的javacard模拟卡代码,然后将代码烧录到真实卡中。
免费的集成调试环境可以去www.javacos.com。

I think you can find an integrated development environment to write your javacard simulation code card, after burn into real card in the code.
Free integrated debugging environment could go to the www.javacos.com.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文