Linux/Unix环境下的JfreeChart错误
我在 Linux 环境中在 Web 浏览器上显示 3D 饼图时收到此错误。在windows环境下完美运行。
java.lang.NoClassDefFoundError: Could not initialize class org.jfree.chart.JFreeChart at org.jfree.chart.ChartFactory.createPieChart3D(ChartFactory.java:763)
我已经设置了系统属性 System.setProperty("java.awt.headless", "true");在我的java代码中。 检查该属性后,它已成功设置为 true。 但我仍然遇到同样的错误。
I am getting this error in the Linux environment while displaying 3D pie charts on the web browser. It works perfectly fine in the windows environment.
java.lang.NoClassDefFoundError: Could not initialize class org.jfree.chart.JFreeChart at org.jfree.chart.ChartFactory.createPieChart3D(ChartFactory.java:763)
I have set the system property System.setProperty("java.awt.headless", "true"); in my java code.
On checking the property, it has been set to true successfully.
But still i am getting the same error.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑你的 Linux 服务器正在无头运行。请参阅在 Java SE 平台中使用 Headless 模式< /a>,以及这个相关论坛线程。
I suspect your Linux server is running headless. See Using Headless Mode in the Java SE Platform, as well as this related forum thread.