我真的很感激我的程序帮助
Exception in thread "Thread-4" java.lang.NullPointerException
at ServerConnect.replyChoice(BaseStaInstance.java:63)
at ServerConnect.run(BaseStaInstance.java:45)
at java.lang.Thread.run(Thread.java:619)
我的ServerConnect功能如下: -
class ServerConnect extends Thread {
Socket skt;
String sProcessId;
ServerConnect scnt = null;
ObjectOutputStream myOutput;
ObjectInputStream myInput;
ServerConnect(){}
ServerConnect(Socket connection, String sProcessNo) {
this.skt = connection;
this.sProcessId = sProcessNo;
}
public void run() {
try {
myInput = new ObjectInputStream(skt.getInputStream());
ServerConnect scnt = new ServerConnect();
while(true) {
try{
int ownTimeStamp = Global.iTimeStamp;
Object buf = myInput.readObject();
//if we got input, print it out and write a message back to the remote client...
if(buf != null){
LINE 45--> **scnt.replyChoice(buf);**
}
}catch(ClassNotFoundException e) {
e.printStackTrace();
}
}
} catch(IOException e) {
e.printStackTrace();
}
}
void replyChoice(Object buf){
try{
LINE 63 --> **myOutput = new ObjectOutputStream(skt.getOutputStream());**
System.out.println("Server read:[ "+buf+" ]");
myOutput.writeObject("got it");
myOutput.flush();
}catch(IOException e){
e.printStackTrace();
}
}
}
它基本上是一个套接字编程和多线程应用程序。在不同的终端上执行它以便客户端和服务器建立连接时,我执行我的代码。但它会在两个终端上引发上述错误。它与我在错误的地方声明myOutput变量有关。有人可以帮助我吗? 从错误消息中,我在附加的代码段中突出显示了第63行和第45行。
答案 0 :(得分:4)
这些教程可以帮助您交换像NPE这样的运行时错误来编译时间错误,这是您可以做的最好的事情。注意:此技巧通常用于。
答案 1 :(得分:2)
您的对象正在使用第一个构造函数初始化,该构造函数不带参数。因此,skt
永远不会被初始化,因此null
。当您调用skt.getOutputStream()
时,它会抛出空指针异常,因为它无法取消引用skt
。
答案 2 :(得分:0)
ServerConnect(){}
ServerConnect(Socket connection, String sProcessNo) {
this.skt = connection;
this.sProcessId = sProcessNo;
}
你使用什么构造函数?导致skt可能未初始化
//编辑:哦,我现在看到你使用了错误的构造函数
ServerConnect scnt = new ServerConnect();
到
ServerConnect scnt = new ServerConnect(skt,sProcessId);