我正在尝试用 Java 创建一个简单的 HTTP Web 服务器。我只是一步一步地采取这个,所以它非常简单。我正在努力做到这一点,以便我可以从客户端读取简单的输入,并在它们都连接时从服务器输出任何内容。
在网站上搜索教程后,这是我到目前为止所做的:
public class Server
{
public static void main(String[] args) throws Exception
{
boolean listening = true;
ServerSocket server = null;
int port = 2222;
try
{
System.out.println("Server binding to port " + port);
server = new ServerSocket(port);
}
catch(Exception e)
{
System.out.println("Error: " + e);
System.exit(1);
}
System.out.println("Server successfully binded to port " + port);
while(listening)
{
System.out.println("Attempting to connect to client");
Socket client = server.accept();
System.out.println("Successfully connected to client");
new ServerThread(client).start() ;
}
server.close();
}
}
public class ServerThread extends Thread
{
private Socket socket = null ;
public ServerThread(Socket s)
{
this.socket = s ;
}
public void run()
{
InputStream in = socket.getInputStream() ;
OutputStream out = socket.getOutputStream() ;
byte [] message, reply;
while((in.read(message))
{
out.write(reply) ;
}
in.close() ;
out.close() ;
socket.close() ;
}
}
它在尝试连接到客户端后绑定然后挂起。这是因为我不确定你在 ServerThread 的 while 循环中做了什么,以及你对消息和回复变量做了什么>_< 我已经很久没有做 Java 了,所以放轻松!