Subject Re: [Firebird-Java] Re: JayBird: Linux and Umlauts
Author Christian Schacht
Hi there,

Roman Rokytskyy wrote:

>> System.out.println(rs.getString(2));
>>
>>
>
>Try
>
>System.out.println(new String(rs.getBytes(2), "Cp1252"));
>
>It should print umlauts correctly (if they can be printed on your
>system at all).
>
This didn't do it, but it brought me on the right track:

I had to explicitly set the correct language in the catalina.sh script.

Thanks You all!

Christian