gpt4 book ai didi

java - 如何通过 TCP 发送 JSONobject?

转载 作者:行者123 更新时间:2023-12-04 14:15:22 24 4
gpt4 key购买 nike

我想了解如何发送我的自定义对象“Paper”,该对象通过 TCP 使用 JSON 进行序列化。
客户端:

import org.json.JSONObject;

import java.io.*;
import java.net.ConnectException;
import java.net.NoRouteToHostException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;

import model.*;
import view.*;

/**

*/
public class JSONClient {

private String host;
private int port;
private Socket socket;
private final String DEFAULT_HOST = "localhost";


public void connect(String host, int port) throws IOException {
this.host = host;
this.port = port;
socket = new Socket(host, port);
System.out.println("Client has been connected..");
}


/**
* use the JSON Protocol to receive a json object as
* from the client and reconstructs that object
*
* @return JSONObejct with the same state (data) as
* the JSONObject the client sent as a String msg.
* @throws IOException
*/
public JSONObject receiveJSON() throws IOException {
InputStream in = socket.getInputStream();
ObjectInputStream i = new ObjectInputStream(in);
JSONObject line = null;
try {
line = (JSONObject) i.readObject();

} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();

}


return line;

}


public void sendJSON(JSONObject jsonObject) throws IOException {
JSONObject jsonObject2 = new JSONObject();
jsonObject2.put("key", new Paper(250,333));


OutputStream out = socket.getOutputStream();
ObjectOutputStream o = new ObjectOutputStream(out);
o.writeObject(jsonObject2);
out.flush();
System.out.println("Sent to server: " + " " + jsonObject2.get("key").toString());
}


public static void main(String[] args) {
JSONClient client = new JSONClient();
try{

client.connect("localhost", 7777);
// For JSON call sendJSON(JSON json) & receiveJSON();
JSONObject jsonObject2 = new JSONObject();
jsonObject2.put("key", new Paper(250,333));

client.sendJSON(jsonObject2);
client.receiveJSON();
}

catch (ConnectException e) {
System.err.println(client.host + " connect refused");
return;
}

catch(UnknownHostException e){
System.err.println(client.host + " Unknown host");
client.host = client.DEFAULT_HOST;
return;
}

catch (NoRouteToHostException e) {
System.err.println(client.host + " Unreachable");
return;

}

catch (IllegalArgumentException e){
System.err.println(client.host + " wrong port");
return;
}

catch(IOException e){
System.err.println(client.host + ' ' + e.getMessage());
System.err.println(e);
}
finally {
try {
client.socket.close();
} catch (IOException e) {
e.printStackTrace();
}
}

}
}
服务器 :
import model.*;

import org.json.JSONObject;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.net.ServerSocket;
import java.net.Socket;

/**
*/
public class JSONServer {


private ServerSocket serverSocket;
private int port;
public static int clients = 0;


public void establish(int port) throws IOException {
this.port = port;
serverSocket = new ServerSocket(port);
System.out.println("JSONServer has been established on port " + port);

}


public void accept() throws IOException {
while (true) {
Socket socket = serverSocket.accept();
Runnable r = new MyThreadHandler(socket);
Thread t = new Thread(r);
t.start();
}
}

private static class MyThreadHandler implements Runnable {
private Socket socket;

MyThreadHandler(Socket socket) {
this.socket = socket;
}

@Override
public void run() {
clients++;
System.out.println(clients + " JSONClient(s) connected on port: " + socket.getPort());

try {
// For JSON Protocol
JSONObject jsonObject = receiveJSON();
sendJSON(jsonObject);

} catch (IOException e) {

} finally {
try {
closeSocket();
} catch (IOException e) {
e.printStackTrace();
}
}
}

public void closeSocket() throws IOException {
socket.close();
}


/**
* use the JSON Protocol to receive a json object as
* String from the client and reconstructs that object
* @return JSONObejct with the same state (data) as
* the JSONObject the client sent as a String msg.
* @throws IOException
*/
public JSONObject receiveJSON() throws IOException {
InputStream in = socket.getInputStream();
ObjectInputStream i = new ObjectInputStream(in);
JSONObject line = null;
try {
line = (JSONObject) i.readObject();

} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();

}

JSONObject jsonObject = new JSONObject(line);
System.out.println("Got from client on port " + socket.getPort() + " " + jsonObject.get("key").toString());
return jsonObject;
}


public void sendJSON(JSONObject jsonObject) throws IOException {
JSONObject jsonObject2 = new JSONObject();
jsonObject2.put("key", new Paper(250,369));

OutputStream out = socket.getOutputStream();
ObjectOutputStream o = new ObjectOutputStream(out);
o.writeObject(jsonObject2);
out.flush();
System.out.println("Sent to server: " + " " + jsonObject2.get("key").toString());
}
}

public void start(int port) throws IOException{
establish(port);
accept();
}

public static void main(String[] args) {
JSONServer server = new JSONServer();

try {
server.start(7777);

} catch (IOException e) {
System.err.println(e.getMessage());
System.err.println(e);
}
}
}
尽管 Class Paper 是序列化的,但我收到错误消息:

localhost org.json.JSONObject

java.io.NotSerializableException: org.json.JSONObject

最佳答案

您正在使用 ObjectOutputStream序列化您的数据。该序列化使用它自己的转换实现 Serializable对象到字节表示,然后通过您的套接字发送。

JSON 用于将对象序列化为 String表示。不幸的是,您从不使用 json 序列化,而是尝试通过套接字发送 JSON 对象。

我的建议:使用

String strJson = jsonObject.toString();

然后使用您的 ObjectOutputStream 发送一个字符串.在接收端将其作为字符串读取,然后通过 passing that String to the constructor 将其转回 JSONObject| :
JSONObject js = new JSONObject(strJson);

关于java - 如何通过 TCP 发送 JSONobject?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33497118/

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