在 Windows 和 Linux 中具有 USB 访问功能的 Java 小程序

发布于 2024-08-18 04:57:37 字数 145 浏览 7 评论 0原文

我们正在开发一种带有 USB 连接的小工具,但不会强迫我们的用户在他们的计算机上安装任何驱动程序和程序,因此......可以开发一个在 Linux 和 Windows 中工作并具有 USB 访问权限的 Java 小程序? (我们是 Java 开发人员,但之前没有使用过小程序)

We're developing a kind of gadget with usb connection but would not to force our users to install any driver and program in their computers, so... ¿it's possible to develop a java applet that work in linux and windows and have usb access?
(We're java developers but nerver before worked with applets)

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

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

发布评论

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

评论(2

总以为 2024-08-25 04:57:37

我猜你选择了 USB API。 这是一种选择。为了使其作为小程序工作,您必须采取的步骤是: 对

  • 小程序进行数字签名 - 需要使用 USB API 的权限
  • 将 USB API 的 .jar 文件放入 Web 服务器上的文件夹中并将其包含在内在小程序标记的 archive 属性中。 查看我的回答这个问题以获取详细信息。

I guess you have chosen a USB API. This is one option. The steps you have to take in order to make it work as an applet are:

  • digitally sign the applet - it would require permissions to use the USB API
  • put the .jar file of the usb api in a folder on your web server and include it in the archive attribute of the applet tag(s). See my answer to this question for details.
等风来 2024-08-25 04:57:37

您的应用程序的界面是否需要嵌入网页中?如果没有,您可能需要查看 Java Web Start ,它允许您通过单击浏览器中的链接来运行 Java 应用程序。

Does your app's interface need to be embedded in a web page? If not, you might want to look into Java Web Start, which lets you run Java Applications by clicking on a link in a browser.

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