用ChartDirector 制作走势图显示中文时,在Windows下是可以正常显示的阿,放到Linux环境下就是显示为[方框],解决方法如下:
程式:
以下为引用的内容: // Create a XYChart object of size 700 x 450 pixels // Set the plotarea at (30, 20) and of size 200 x 200 pixels // Add a line chart layer using the given data // Display 1 out of 3 labels on the x-axis. c.setBackground(0xFFFF80, 0x0, 1); c.addLegend(400, 35, false, "simsun.ttc", 10).setBackground(0xFFFF80); |
其中 【simsun.ttc】 是此程式中使用的中文字型名称。
问题原因:
Linux 下无 【simsun.ttc】 此字型档。
问题解决:
从 Windows 系统将 【simsun.ttc】 此档案复制到专案的JavaSource 下,重新打包,重新发布,重新启动 Server。
或从 Windows 系统将 【simsun.ttc】 此档案复制到专案的【专案目录】/WEB-INF/classes 下,重新启动 Server。