A java blog with a collection of examples and tutorials on Java and related technologies. (Under maintenance with continuous updates) Be in touch with java jazzle or k2java.blogspot.com.
This the function to convert byte array to string:
//eg. byte[] byteArray = new byte[] {87, 79, 87, 46, 46, 46};public static String convertByteArrayToString(byte[] byteArray) { String value = new String(byteArray); return value; }
No comments:
Post a Comment