List of utility methods to do JSON Create
JSONObject | bytes2Json(byte[] bytes, long len, int from, int to) bytes Json JSONObject jsonResult = null; byte[] jsonByte = new byte[(int) len]; for (int i = from, j = 0; i < to; i++, j++) { jsonByte[j] = bytes[i]; String strJson = new String(jsonByte); try { jsonResult = new JSONObject(strJson); ... |