在 Windows 和 Linux 中具有 USB 访问功能的 Java 小程序
我们正在开发一种带有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜你选择了 USB API。 这是一种选择。为了使其作为小程序工作,您必须采取的步骤是: 对
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:
archive
attribute of the applet tag(s). See my answer to this question for details.您的应用程序的界面是否需要嵌入网页中?如果没有,您可能需要查看 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.