German ÄÖÜ

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Guest

German ÄÖÜ

Post by Guest » Wed Jul 07, 2004 7:59 am

It there any way,
to show the german letters ÄÖÜ under solaris and PJA ?

Thx for your help.

DopeForADay
Posts: 32
Joined: Thu Apr 22, 2004 9:15 am

Post by DopeForADay » Wed Jul 07, 2004 11:05 am

Hello,


try this:

for Ä: '\u00C4'
for Ü: '\u00DC'
for Ö: '\u00D6'
for ä: '\u00E4'
for ö: '\u00F6'
for ü: '\u00FC'

I hope this works ;)

Guest

Post by Guest » Wed Jul 07, 2004 1:04 pm

well ok, but I can't write a StringParser for encoding.
It there any configuration like font.properties ??

angel
Posts: 899
Joined: Thu Jan 15, 2004 12:07 am
Location: Germany - Palatinate

Post by angel » Wed Jul 07, 2004 4:58 pm

Make sure your data is in UTF-8

Locked