The same with me: DynamicJasper + ubuntu 10.04 + sun-java6-jre = JRFontNotFoundException: Font 'Arial' is not available to the JVM.
Executing current pseudo-code:
public static void main(String[] args) throws Exception {
System.out.println(Arrays.asList(GraphicsEnvironment
.getLocalGraphicsEnvironment().getAvailableFontFamilyNames()));
}
Arial font is not Available.
I Try install mscorefonts, but package is installed and uptdate.
sudo apt-get update
sudo apt-get install ttf-mscorefonts-installer
And Arial font problem, not solved.
I try search the font in the filesystem, finally get the problem.
ls /usr/share/fonts/truetype/msttcorefonts/
Just have README, with instructions for correct install
cat /usr/share/fonts/truetype/msttcorefonts/README
You need internet connection for this:
sudo apt-get install --reinstall ttf-mscorefonts-installer
Install, accept the EULA and problem solved.