How to load embedded font as InputStream from jar in java?

If I run the application from Eclipse, then all be done. But If export it to jar i get an Exception.

java.io.IOException: Problem reading font data.
at java.awt.Font.createFont(Unknown Source)

Here is the package tree

enter image description here

And my code (In the SzervizPrint.java file):

InputStream istream = getClass().getResourceAsStream("/resources/SerpentineBolditalic.ttf");
Font myFont = Font.createFont(Font.TRUETYPE_FONT, istream);
myFont = myFont.deriveFont(36.0f);
lblNewLabel.setFont(myFont);

Upvotes: 9

Views: 5689

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168795

SerpentineBolditalic.ttf

Should be:

SerpentineBoldItalic.ttf 

(capital 'I')

While the local file system might not be case sensitive, getResource(String) most definitely is.

Upvotes: 6

Related Questions