gpt4 book ai didi

java - 在java中将JSON类型转换为字节数组格式

转载 作者:IT老高 更新时间:2023-10-28 12:52:42 27 4
gpt4 key购买 nike

当我想在 UDP 协议(protocol)中使用字节格式发送数据时遇到问题,问题是当我尝试创建类型为 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);

关于java - 在java中将JSON类型转换为字节数组格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10099787/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com