Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem to display characters with Java

Status
Not open for further replies.

laffreuxthomas

Programmer
Sep 3, 2002
20
FR
Hi !

I've just installed a Debian, but Java programs cannot display french characters...

This program :
Code:
    for (int i=0; i < 1000; i++) {
      System.out.println(i + &quot; &quot; + (char) i);
    }
display the first 127 characters, and then '?' for number upper to 127 :
Code:
   ...
    123 {
    124 |
    125 }
    126 ~
    127
    128 ?
    129 ?
    130 ?
    131 ?
    ...

- I don't have this problem under Windows.
- Non-Java programs of Linux write correct french characters
- All Java softwares have this problem
- I have installed the package xfonts-intl-european

Any idea ?

Thomas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top