我想在UDP协议中使用字节格式发送数据时遇到问题,问题是当我尝试使用json对象类型创建数据时,无法获取数据的字节格式,这是我的示例代码:
JSONObject obj = new JSONObject(); obj.put("name", "foo"); obj.put("num", new Integer(100)); obj.put("balance", new Double(1000.21)); obj.put("is_vip", new Boolean(true)); obj.put("nickname",null); sendData = obj.getBytes(); //this is error because not have methos getBytes();
我知道我的问题,但我找不到如何将json对象转换为字节,有什么建议吗?
获取字符串的字节:
obj.toString().getBytes(theCharset);