我的客户端是一个Web浏览器,并使用此url向myserver发送请求:
的 http://localhost
这是服务器端代码。问题在于ServingThread
类的运行方法。
class ServingThread implements Runnable{
private Socket socket ;
public ServingThread(Socket socket){
this.socket = socket ;
System.out.println("Receives a new browser request from "
+ socket + "\n\n");
}
public void run() {
PrintWriter out = null ;
try {
String str = "" ;
out = new PrintWriter( socket.getOutputStream() ) ;
out.write("This a web-page.") ;
// :-(
out.flush() ;
// :-(
socket.close() ;
System.out.println("Request successfully fulfilled.") ;
} catch (IOException io) {
System.out.println(io.getMessage());
}
}
}
我是否正在使用
out = new PrintWriter( socket.getOutputStream(), true ) ;
或
out = new PrintWriter( socket.getOutputStream() ) ;
输出没有进入浏览器。 仅当我使用
手动刷新时,输出才会进入浏览器out.flush() ;
我的问题: new PrintWriter( socket.getOutputStream(), true )
应该自动刷新输出缓冲区,但它没有这样做。为什么呢?
答案 0 :(得分:20)
来自Javadocs:
参数:
out
- 输出流
autoFlush
- 布尔值;如果为true,则println
,printf
或format
方法将刷新输出缓冲区
它没有说write()
将刷新输出缓冲区。请尝试使用println()
,它应该像您期望的那样刷新。