laffreuxthomas
Programmer
Hi !
I've just installed a Debian, but Java programs cannot display french characters...
This program :
display the first 127 characters, and then '?' for number upper to 127 :
- 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
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 + " " + (char) i);
}
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