gpt4 book ai didi

java - 如何通过java套接字发送Json对象?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:44:35 25 4
gpt4 key购买 nike

你如何通过 java 中的 ObjectOutputStream 类通过套接字发送 Json 对象,这就是我到目前为止所得到的

    s = new Socket("192.168.0.100", 7777);
ObjectOutputStream out = new ObjectOutputStream(s.getOutputStream());
JSONObject object = new JSONObject();
object.put("type", "CONNECT");
out.writeObject(object);

但这对 java.io.streamcorruptedexception 异常有什么建议吗?

最佳答案

您应该创建一个 OutputStreamWriter,而不是使用 ObjectOutputStream,然后使用它将 JSON 文本 写入流。您需要选择一种编码方式——我建议使用 UTF-8。例如:

JSONObject json = new JSONObject();
json.put("type", "CONNECT");
Socket s = new Socket("192.168.0.100", 7777);
try (OutputStreamWriter out = new OutputStreamWriter(
s.getOutputStream(), StandardCharsets.UTF_8)) {
out.write(json.toString());
}

关于java - 如何通过java套接字发送Json对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21953958/

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