JAR 文件无法正常工作
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在实现工具中打开 jar 编辑 Menifest.txt 添加以下内容
另请参阅
Open up the jar in achiever tool edit Menifest.txt add the following
Also See
从命令行启动 jar 时,javax.comm jar 是否在类路径中?
类似于:
请注意,
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:
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