智能卡开发
我需要一个“java”源代码,了解如何从计算机中提取 cap 文件并将其分成块,以便使用 APDU 将其发送到智能卡以安装、加载或删除应用程序。提前致谢。
I need a 'java' source code on how to extract a cap file from the computer and divide it into blocks in order to send it using APDUs to the smart card to install or load or delete an application. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在谈论 GlobalPlatform,并且有一个合适的开源工具可以实现此目的,称为 GPJ
You're talking about GlobalPlatform and there's a right open source tool out there for this, called GPJ
我认为你应该从 http://java.sun.com/javacard/ 开始
I think you should start at http://java.sun.com/javacard/
从 http://gpj.svn.sourceforge.net/viewvc/gpj/ 获取源代码
您可能会在
CapFile.java
的getEntries(ZipInputStream in)
方法中了解如何处理CAP文件Get the source code from http://gpj.svn.sourceforge.net/viewvc/gpj/
You may get some idea about dealing with CAP file in the method
getEntries(ZipInputStream in)
ofCapFile.java