char转byte
char a='a';
byte b=Byte.parseByte((int)a+"");
 
byte转char
byte b=100;
char c=(char)b;