자바 byte[] to String,
byte[] 를 String으로 변환하기 byte[] fl_bd = (byte[])map.get("FL_BD");//내용 가져오기 String contents= new String(fl_bd,"MS949"); java.lang.String.String(byte[] bytes, String charsetName) throws UnsupportedEncodingException Constructs a new String by decoding the specified array of bytes using the specified charset. The length of the new String is a function of the charset, and hence may not be equal to the ..
프로그래밍
2011. 3. 10. 14:10