JAR 文件无法正常工作

发布于 2024-11-29 20:05:03 字数 114 浏览 0 评论 0原文

我在 eclipse 中创建 .jar 文件。我使用 .jar 文件在 pos 打印机上打印文本。我的程序打印正确,但是当我启动 .jar 文件时,未与打印机连接。为了连接打印机,我使用 javax.comm 库。

I create .jar file in eclipse. I use .jar file to print text on pos printer. My program is printing correctly, but when I start .jar file is not connecting with the printer. For connecting with the printer I use javax.comm library.

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

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

发布评论

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

评论(2

雅心素梦 2024-12-06 20:05:03

在实现工具中打开 jar 编辑 Menifest.txt 添加以下内容

Class-Path: /path/to/requiredLibary.jar

另请参阅

Open up the jar in achiever tool edit Menifest.txt add the following

Class-Path: /path/to/requiredLibary.jar

Also See

云醉月微眠 2024-12-06 20:05:03

从命令行启动 jar 时,javax.comm jar 是否在类路径中?
类似于:

java -cp myproject.jar;javax-comm-3.0.jar com.mycompany.MyMainClass

请注意,java -jar myproject.jar-cp 不兼容,即此不起作用java -cp javax-comm-3.0.jar -jar myproject.jar

Is the javax.comm jar in the classpath when you start the jar from the command line?
Something like:

java -cp myproject.jar;javax-comm-3.0.jar com.mycompany.MyMainClass

Note that the java -jar myproject.jar is incompatible with -cp, ie this doesn't work: java -cp javax-comm-3.0.jar -jar myproject.jar

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