P
Phillip Lord
I'm a little confused over unicode support within java.
If I do something like....
JLabel label = new JLabel();
label.setText( "0" + (char)0x2800 + 1 + (char)0x2801 + 2 + (char)0x2802 );
which I expect to put the three characters "0 1 2" onto screen
separated by the three characters which turn out to be the first three
braille dot characters, in fact I get "0 1 2" separated by little
boxes which in my experience tends to indicate "I don't know how to
draw this character".
Does anyone know how I get the actual characters to appear?
Phil
If I do something like....
JLabel label = new JLabel();
label.setText( "0" + (char)0x2800 + 1 + (char)0x2801 + 2 + (char)0x2802 );
which I expect to put the three characters "0 1 2" onto screen
separated by the three characters which turn out to be the first three
braille dot characters, in fact I get "0 1 2" separated by little
boxes which in my experience tends to indicate "I don't know how to
draw this character".
Does anyone know how I get the actual characters to appear?
Phil