java.lang.NoClassDefFoundError:无法初始化类 sun.print.CUPSPrinter
在 Linux 中将作业发送到打印机时出现以下错误。
java.lang.NoClassDefFoundError: Could not initialize class sun.print.CUPSPrinter
不知道为什么找不到该类,因为它包含在 rt.jar
中,并且我已经查看了我的 rt.jar
并且该类就在那里。 有关更多信息,我的 java -version
显示
java 版本“1.6.0_24”
Java(TM) SE 运行时环境(构建 1.6.0_24-b07)
Java HotSpot(TM) 服务器虚拟机(版本 19.1-b02,混合模式)
提前致谢
I get the following error when sending a job to a printer in Linux.
java.lang.NoClassDefFoundError: Could not initialize class sun.print.CUPSPrinter
Don't know why the class cannot be found, as it's included in rt.jar
and i've looked into my rt.jar
and the class is there.
For more information, my java -version
shows
java version "1.6.0_24"
Java(TM)
SE Runtime Environment (build
1.6.0_24-b07)
Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode)
Thank you in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如 java.lang.NoClassDefFoundError:无法初始化类 XXX,该类存在,但未正确初始化。
CodePainters 在评论中指出了此报告 https://bugs.eclipse.org /bugs/show_bug.cgi?id=297910 其中
意味着 $DISPLAY 未设置或设置正确。
As noted in java.lang.NoClassDefFoundError: Could not initialize class XXX, the class is present, but is not initializing correctly.
In a comment, CodePainters points to this report https://bugs.eclipse.org/bugs/show_bug.cgi?id=297910 which
implies that $DISPLAY was not set or set correctly.