본문 바로가기

카테고리 없음

[java] String->byte, byte->String

String -> byte
str.getBytes();

byte -> String
new String(sVal);