Loading...
Logo
Processing Forum

CJK input

in Programming Questions  •  1 year ago  
Hi all, 

I'm working on a multilingual program, I could display CJK characters however I dont' know how to accept CJK characters input from IME. I'm ready to put together a small text input class however when I tried to following code, it seems to get only latin characters but not CJK characters, does anyone have any experience on this topic?

=======================
void setup() { size(200,200);}
void draw() {}

void keyPressed() {
      println(key + " : " + keyCode);
}
=======================


thanks!
Herbert