> I have a "byte" ,no array nothing , just a byte. How
> can i convert it to char or string
String.valueOf(theByte)
os similar methods from the respective wrapper classes.
> so that the time
> when i use it in system.out.println it should give
> the character that have been sent and not the ascii .
bytes are not characters. chars have two bytes. Hence out will print a number.