type casting
hi there
i am trying to convert a int value to char (this is importtant as only chars can be sent to the tomcat server) but unfortunately when i do this and do a printout of the result i get garbage, is there a way around this?
here is the code:
int setplayer = 12;
char breakdown = (char)setplayer;
System.out.println("breakdown" + breakdown);
any help will be appreciated
regards

