智能卡开发

发布于 2024-08-25 10:26:47 字数 84 浏览 13 评论 0原文

我需要一个“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 技术交流群。

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

发布评论

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

评论(3

早茶月光 2024-09-01 10:26:47

您正在谈论 GlobalPlatform,并且有一个合适的开源工具可以实现此目的,称为 GPJ

You're talking about GlobalPlatform and there's a right open source tool out there for this, called GPJ

最美不过初阳 2024-09-01 10:26:47

我认为你应该从 http://java.sun.com/javacard/ 开始

I think you should start at http://java.sun.com/javacard/

乖不如嘢 2024-09-01 10:26:47

http://gpj.svn.sourceforge.net/viewvc/gpj/ 获取源代码

您可能会在CapFile.javagetEntries(ZipInputStream in)方法中了解如何处理CAP文件

private Map<String, byte[]> getEntries(ZipInputStream in)
            throws IOException {
        Map<String, byte[]> result = new HashMap<String, byte[]>();
        while (true) {
            ZipEntry entry = in.getNextEntry();
            if (entry == null) {
                break;
            }
            if (entry.getName().indexOf("MANIFEST.MF") != -1) {
                continue;
            }
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            byte[] buf = new byte[1024];
            int c;
            while ((c = in.read(buf)) > 0)
                bos.write(buf, 0, c);
            result.put(entry.getName(), bos.toByteArray());
        }
        return result;
    }

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) of CapFile.java

private Map<String, byte[]> getEntries(ZipInputStream in)
            throws IOException {
        Map<String, byte[]> result = new HashMap<String, byte[]>();
        while (true) {
            ZipEntry entry = in.getNextEntry();
            if (entry == null) {
                break;
            }
            if (entry.getName().indexOf("MANIFEST.MF") != -1) {
                continue;
            }
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            byte[] buf = new byte[1024];
            int c;
            while ((c = in.read(buf)) > 0)
                bos.write(buf, 0, c);
            result.put(entry.getName(), bos.toByteArray());
        }
        return result;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文