August 12th, 1999, 07:46 AM
How do we display ASCII characters(0-255) in a TextArea Control ?
Thanks
Onkar Singh Parhar
Thanks
Onkar Singh Parhar
|
Click to See Complete Forum and Search --> : To Display ASCII characters. August 12th, 1999, 07:46 AM How do we display ASCII characters(0-255) in a TextArea Control ? Thanks Onkar Singh Parhar Aslam August 12th, 1999, 09:18 AM Save the following as ascii.java, javac it, and then java ascii.java class ascii { public static void main(String args[]) { int i = 0; for(i=0;i<256;i++) { System.out.print((char)i+", "); } } } codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |