News

If you are running Java through your terminal or command line without a separate library of graphical user interface components, your "system.out.println ()" method may not use Unicode by default.
So I picked two Unicode chars that are outside the normal range of chars I'd send.<P>Which leads to the second issue.<BR>Because I'm filtering my OutputStream, I thought<BR>I'd subclass the ...
Character.getNumericValue(aChar) will let me convert a char into an int. I want to know how I can reverse the process and get a char from an integer? Thanks.