我在iReport上做了报告,在本地它正常运行,因为我有操作系统微软,但是当我在Linux上运行我的项目时,报告显示了一个错误
HTTP Status 500 - Font 'Arial' is not available to the JVM. See the Javadoc for more details.
net.sf.jasperreports.engine.util.JRFontNotFoundException: Font 'Arial' is not available to the JVM. See the Javadoc for more
我创建了一个applet,其中我将字体属性分配给字体类对象f在Applet类中。在()方法中,我使用setFont()方法将当前Graphics对象的字体属性设置为'f'的字体属性。但是drawString()方法似乎显示为默认字体(可能是Arial),而不是我设置的字体(尽管我设置的是字体大小、字体样式和颜色)。这应该是根据我遵循的书,但不是。请找我的缺陷,我的代码。谢谢。
/*Applet to use set Font*/
import java.applet.*;
import java.awt.*;
public class UsingFont extends A