gpt4 book ai didi

Java Applet 和 dll

转载 作者:搜寻专家 更新时间:2023-11-01 02:15:24 26 4
gpt4 key购买 nike

我正在编写一个网络应用程序,允许用户上传直接从设备(即扫描仪)导入的文档。

我想实现一个简单的 Web 应用程序,它使用 Java Applet 来处理设备通信。我按照本教程创建了 jtwain.dll: http://today.java.net/pub/a/today/2004/11/18/twain.html一个演示应用程序在独立模式下运行良好。

现在我需要切换到小程序,但我不知道如何将 jtwain.dll 分发到客户端以使小程序正常工作(此应用程序将用于客户端为 Windows XP 或稍后)。

最佳答案

很久以前我就这样做了,但要点是你想从小程序的代码库中提取 DLL,这样你就可以将它存储在 JAR 中,然后你想将它复制到/JRE 的 lib/ext 文件夹。

 //Where this is an applet
URL codeBase= this.getCodeBase();
URL twainUrl new URL(codeBase, "jtwain.dll");
String javaHome=System.getProperty("java.home");
//copy the contents of twainUrl to javaHome\lib\ext

您需要对小程序进行签名。

关于Java Applet 和 dll,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7403814/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com