有人可以告诉我如何使用java卡读取智能卡中的数据吗?我有这个代码我正在使用java卡2.2
我是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从智能卡中的文件读取数据的常见机制是:
The common mechanism to read data from files in smart card is:
我觉得你可以找一个集成开发环境来写你的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.