안드로이드
byte를 string으로 변환하는 방법
dosona
2019. 3. 16. 16:41
byte를 string으로 변환하는 방법
byte[] bytes
String string = new String(bytes);
Log.d(TAG, "=====변환된 byte값은====" +string);