String message = new String("byte数组");
//去掉多余的引号和转义字符
String substring = message.substring(1, message.length() - 1).replace("\\\"","'");
//转化为json对象
JSONObject jsonObject = new JSONObject(substring);
String message = new String("byte数组");
//去掉多余的引号和转义字符
String substring = message.substring(1, message.length() - 1).replace("\\\"","'");
//转化为json对象
JSONObject jsonObject = new JSONObject(substring);