我遇到了Java SocketServer的问题,我正在构建一个非常基本的Java处理Web服务器。
所以我正在创建一个套接字服务器,这是run方法中的代码,因为我已经使服务器进行了线程化。
我遇到的问题是服务器代码似乎冻结为while((line = reader.readLine()) != null)
,直到远程客户端关闭连接。我正在使用chrome插件ARC(高级REST客户端)进行测试。
public void start() throws ServerException{
this.running = true;
try{
this.server = new ServerSocket(this.port);
}catch(IOException ex){
System.err.println("Failed to create Server Port is inuse!");
throw new ServerException("Unable to bind to port '" + this.port + "'", ex);
}
while(!isStopped()){
Socket client = null;
try{
client = this.server.accept();
}catch(IOException ex){
if(isStopped()) {
return;
}
throw new ServerException("Error accepting client connection", ex);
}
new Thread(
new ServerWorker(client, this)
).start();
}
}
这是ServerWorker
public void run(){
try {
InputStream input = clientSocket.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(input));
OutputStream output = clientSocket.getOutputStream();
long time = System.currentTimeMillis();
ArrayList<String> lines = new ArrayList<String>();
String line;
while((line = reader.readLine()) != null){
lines.add(line);
}
String[] msg = new String[lines.size()];
msg = lines.toArray(msg);
output.write("HTTP/1.1 200\r\n".getBytes());
output.write("\r\n".getBytes());
new HandleConnection(msg).begin(output);
reader.close();
output.close();
System.out.println("Request processed: " + time);
} catch (IOException e) {
}
}
最后这是处理程序:
public void begin(OutputStream output){
for(int i = 0; i < lines.length; i++){
System.out.println(lines[i]);
}
try{
output.write("{\"Response\":\"Ok\"}\r\n".getBytes());
}catch(IOException e){}
}
答案 0 :(得分:1)
我遇到的问题是服务器代码似乎冻结为
std::vector<double> v { 0.9,0.78,0.6,0.4,0.33,0.2,0.2,0.2,0.07 } double x = 0.7; int position = BinaryFindPosition(v.begin(),v.end(),x); // position is 2
,直到远程客户端关闭连接。
这不是问题:这是正确的,指定的行为。
问题是您没有正确实现HTTP。您需要熟悉RFC 2616及其后继者,特别是有关内容长度添加传输编码的部分。此代码并未表现出任何相关知识。
例如,为什么在处理请求之前发送HTTP 200?您如何知道请求处理器不希望返回不同的代码?