我试图让 Java 套接字向浏览器发送一个简单的 HTML 响应。
这是我的Java代码:
Socket socket = server.accept();
BufferedReader in = new BufferedReader(new InputStreamReader(socket.getInputStream()));
String s;
// this is a test code which just reads in everything the requester sends
while ((s = in.readLine()) != null)
{
System.out.println(s);
if (s.isEmpty())
{
break;
}
}
// send the response to close the tab/window
String response = "<script type=\"text/javascript\">window.close();</script>";
PrintWriter out = new PrintWriter(socket.getOutputStream());
out.println("HTTP/1.1 200 OK");
out.println("Content-Type: text/html");
out.println("Content-Length: " + response.length());
out.println();
out.println(response);
out.flush();
out.close();
socket.close();
server
是一个设置为自动选择要使用的开放端口的 ServerSocket。
这个想法是任何重定向到的网页http:\\localhost:port
(port
端口server
正在监听的位置)都会自动关闭。
当此代码运行时,我的浏览器会收到响应,并且我已经验证它收到了我发送的所有信息。
但是,窗口/选项卡没有关闭,我什至无法通过手动向window.close();
浏览器的 Javascript 控制台发出命令来关闭选项卡。
我在这里想念什么?我知道具有给定内容的 html 页面应该自动关闭窗口/选项卡,那么为什么这不起作用?我正在谷歌浏览器上测试这个。
我尝试了一个更完整的 html 网页,但仍然没有运气。
以下是浏览器作为页面源报告的内容:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script type="text/javascript">window.close();</script>
</head>
<body>
</body>
</html>