gpt4 book ai didi

Java套接字 - 简单的程序不起作用

转载 作者:行者123 更新时间:2023-11-29 03:33:39 25 4
gpt4 key购买 nike

我花了很多时间找出问题所在,但没有成功。服务器正常启动,但是当我启动客户端时出现“意外错误”异常。我也更改了端口,但没有任何效果。我应该怎么做才能让它发挥作用?

/* Server.java */
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;

public class Server
{
private static final int PORT = 50000;
static boolean flaga = true;

private static ServerSocket serverSocket;
private static Socket clientSocket;

public static void main(String[] args) throws IOException
{
serverSocket = null;
try
{
serverSocket = new ServerSocket(PORT);
}
catch(IOException e)
{
System.err.println("Could not listen on port: "+PORT);
System.exit(1);
}

System.out.print("Wating for connection...");

Thread t = new Thread(new Runnable()
{
public void run()
{
try
{
while(flaga)
{
System.out.print(".");
Thread.sleep(1000);
}
}
catch(InterruptedException ie)
{
//
}

System.out.println("\nClient connected on port "+PORT);
}
});
t.start();

clientSocket = null;
try
{
clientSocket = serverSocket.accept();
flaga = false;
}
catch(IOException e)
{
System.err.println("Accept failed.");
t.interrupt();
System.exit(1);
}

final PrintWriter out = new PrintWriter(clientSocket.getOutputStream(),true);
final BufferedReader in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));

t = new Thread(new Runnable()
{
public void run()
{
try
{
Thread.sleep(5000);

while(true)
{
out.println("Ping");
System.out.println(System.currentTimeMillis()+" Ping sent");

String input = in.readLine();

if(input.equals("Pong"))
{
System.out.println(System.currentTimeMillis()+" Pong received");
}
else
{
System.out.println(System.currentTimeMillis()+" Wrong answer");

out.close();
in.close();
clientSocket.close();
serverSocket.close();
break;
}


Thread.sleep(5000);
}
}
catch(Exception e)
{
System.err.println(System.currentTimeMillis()+" Unexpected Error");
}
}
});
t.start();
}
}

和客户端类

/* Client.java */
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.Socket;

public class Client
{
private static final int PORT = 50000;
private static final String HOST = "localhost";

public static void main(String[] args) throws IOException
{
Socket socket = null;

try
{
socket = new Socket(HOST, PORT);
}
catch(Exception e)
{
System.err.println("Could not connect to "+HOST+":"+PORT);
System.exit(1);
}

final PrintWriter out = new PrintWriter(socket.getOutputStream(),true);
final BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));

Thread t = new Thread(new Runnable()
{
public void run()
{
long start = System.currentTimeMillis();

while (true)
{
try
{
String input = in.readLine();

if (input != null)
{
System.out.println(System.currentTimeMillis() + " Server: " + input);
}

if (input.equals("Ping"))
{
if(System.currentTimeMillis()-start>30000)
{
out.println("Pon g");
System.out.println(System.currentTimeMillis() + " Client: Pon g");
break;
}

out.println("Pong");
System.out.println(System.currentTimeMillis() + " Client: Pong");
}
}
catch (IOException ioe)
{
//
}
}
}
});
t.start();

out.close();
in.close();
socket.close();
}
}

这是运行时的输出

Wating for connection............
Client connected on port 50000
1368986914928 Ping sent
java.lang.NullPointerException
at Server$2.run(Server.java:84)
at java.lang.Thread.run(Thread.java:722)

最佳答案

对于那些空的 catch block 或打印无用消息,您犯了一个大错误。

如果您打印或记录堆栈跟踪,您将获得更多信息。这简直是​​必须的。

您需要一些介绍说明 - 看看这个,看看它与您的有何不同。

http://docs.oracle.com/javase/tutorial/networking/sockets/clientServer.html

关于Java套接字 - 简单的程序不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16637457/

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