Thomas Fritsch said:
As far as I know (and I don't know much here) you use the same Swing and
AWT classes in a Chinese Java environment as you do in an English
environment. The difference is that Java then uses a Chinese input method
for translating from keyboard to text. See "Input Methods Framework"
<
http://java.sun.com/j2se/1.4.2/docs/guide/imf/index.html> for more info.
Also, you don't have to do anything special in the Java code if the
input method is done by the OS (e.g. via Windows XP's IME subsystem). As of
2005, every time I see someone use a Japanese application, they use Windows
XP's built in IME system, rather than an input method system built into the
application.
Back in the 90s, when Windows 3.1 and 95 were the norm, I *did* see
people use input methods built into the application for entering Chinese
text, but I suspect that it's no longer done that way anymore.
- Oliver