【发布时间】:2014-01-07 12:53:47
【问题描述】:
试图通过套接字发送一个arrayList,在对象输入流初始化时得到一个空指针异常(客户端)。
客户:
try {
ObjectInputStream objIn = new ObjectInputStream(
Client.socket.getInputStream()); // HERE
library = (ArrayList<Book>) objIn.readObject();
} catch (IOException e) {
服务器:
try {
ObjectOutputStream objOut = new ObjectOutputStream(
this.client.getOutputStream());
objOut.writeObject(library);
objOut.flush(); // added later, not helping
}
我已经尝试通过套接字进行通信两天了,但几乎没有成功。我不知道是怎么回事。 Ofc 我计划在我有更多时间的时候更好地记录自己,但现在我真的很想了解正在发生的事情。
编辑
public class Client {
private static int port = 6666;
private static Socket socket = null;
public Client (int port) {
Client.port = port;
}
public Client () {
}
public void establishConnection() {
try {
Client.socket = new Socket(InetAddress.getByName(null), Client.port);
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
服务器:
public void start () {
(new Thread() {
public void run() {
try {
Server.socket = new ServerSocket(Server.portNumber);
while (!Server.stop) {
Socket client = Server.socket.accept();
(new HandleRequest (client)).start();
}
...............
public class HandleRequest extends Thread {
private Socket client = null;
private SQL sql_db = new SQL ();
public HandleRequest (Socket client) {
this.client = client;
}
@Override
public void run () {
try {
if (!this.sql_db.isConnected())
this.sql_db.connect();
if (this.client == null) {
System.out.println("Error: client does not exist, NO idea what's going on");
return;
}
ArrayList<Book> library = this.sql_db.getAllBooks();
try {
ObjectOutputStream objOut = new ObjectOutputStream(
this.client.getOutputStream());
objOut.writeObject(library);
objOut.flush();
} catch (Exception e) {
System.out.println("Server error in handling request for whole library!");
e.printStackTrace();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
【问题讨论】:
-
此问题中的代码不足,无法为您提供答案。请告诉我们
Client.socket的定义和实例化位置。最好发布一个 SSCCE 来说明问题。 -
你能提供堆栈跟踪并显示它抱怨的行号吗?这在这些情况下通常很有帮助。
-
@Duncan Ok 会尝试的。 @CodeChimp,堆栈跟踪指向我的代码中的
//here -
你有没有调用过
Client的establishConnection()方法?