I'm trying to generate report with DynamicJasper, but I'm getting the following error

net.sf.jasperreports.engine.util.JRFontNotFoundException:  
                                 Font 'Arial' is not available to the JVM.   

msttcorefonts is installed, but I guess JVM is not using any fonts from it. I'm using ubuntu 10.04 any ideas??

Thanks

link|improve this question

76% accept rate
1  
I'm actually ignoring it ... just set the following "net.sf.jasperreports.awt.ignore.missing.font=true" bad idea... but solves the problem for a moment.... – Andrew Sep 30 '10 at 9:27
feedback

10 Answers

I use IReport instal font tools->options->fonts->click install font then select the font and click ->export as extension and type name myfont.jar

add to your build path and add spring.jar to your build path too

copy spring.jar from Jaspersoft\iReport-3.7.0\ireport\modules\ext

link|improve this answer
1  
For completion, the arial ttf is in c:/windows/fonts (at least in win xp): arial.ttf, arialbd.ttf(bold),ariali.ttf(italic),arialbi(bold-italic) – jneira Nov 17 '11 at 7:59
feedback

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.

link|improve this answer
1  
FYI on other linux flavours try sudo apt-get install msttcorefonts – KCD Feb 14 at 23:52
feedback

I solved this by choosing 'SansSerif' or 'Serif' only and not 'Arial' or 'Times New Roman'.

link|improve this answer
feedback

can make your custom fonts via iReport and converting like jars files

link|improve this answer
feedback

may be you need install sun-java6-fonts

link|improve this answer
feedback

Restart JVM (java proces) or restart all server.

link|improve this answer
3  
you can restart the electric system but this is not the it crowd – jneira Nov 17 '11 at 7:56
feedback

You would need to install microsoft fonts in Ubuntu, refer this link for information ..

http://embraceubuntu.com/2005/09/09/installing-microsoft-fonts/

link|improve this answer
feedback

Try adding the line

net.sf.jasperreports.awt.ignore.missing.font=true

to your jasperreports.properties file.

Jasper stops finding one font

link|improve this answer
That is exactly what I was saying in my comment at the top of this thread.) – Andrew Jul 17 '11 at 12:00
feedback

Copy your Fonts on the following directory JDK_HOME\jre\lib\fonts

link|improve this answer
feedback

You can do it by installing fonts, that means everywhere you want to run that particular application. Simplest way is just add this bl line to your jrxml file:

Hope it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.