我正在家里托管一个网页。我使用 Java 制作了自己的 HTTP 服务器。这是一个SSCCE:
if(command.startsWith("GET"))
{
//client is a socket on which I reply.
PrintWriter pw = new PrintWriter(client.getOutputStream(), true);
String commule = command.split(" ");
if(commule[0].equals("GET"))
{
if(commule[1].contains("."))
{
File file = new File(GEQO_SERVER_ROOT + commule[1].substring(1).replaceAll("%20", " "));
if(file.exists())
{
OutputStream out = client.getOutputStream();
InputStream stream = new FileInputStream(file);
String response = new String();
response += "HTTP/1.1 200 OK\r\n";
response += "Date: Thu, 08 Aug 2013 08:49:37 GMT\r\n";
response += "Content-Type: text/html\r\n";
response += "Content-Length: " + file.length() + "\r\n";
response += "Connection: keep-alive\r\n";
response += "\r\n";
pw.write(response); //Assume I already initialized pw as a PrintWriter
pw.flush();
copy(stream, out);
stream.close();
out.close();
}
else
{
pw.write("<html><h1>The request 404ed.</h1>");
pw.write("<body>The requested URL <b>" + commule[1] + "</b> could not be found on this server.</body></html>");
pw.flush();
}
}
else
{
BufferedReader br = new BufferedReader(new FileReader(GEQO_SERVER_ROOT + commule[1].substring(1) + "main.html"));
String sCurrentLine;
while ((sCurrentLine = br.readLine()) != null)
{
pw.print(sCurrentLine);
}
br.close();
}
}
else
{
pw.println("Unrecognized HTTP command.");
}
}
这是 main.html 源代码:
<html>
<title>Geqo Server</title>
<body>Geqo server online and functioning!</body>
</html>
问题是当我尝试使用 Chrome 访问此页面时,它显示正确(至少在使用 127.0.0.1 时)。但是当我尝试在 127.0.0.1 上的 Firefox 上访问它时,它可以工作,但只是给了我 html 源代码。IE 也只给了我来源。谁能告诉我为什么 Firefox 和 IE 只显示源,而不是解析它?
我认为这包含一些线索(Firebug 截图):
我的消息来源似乎带有<pre>
标签。我不知道为什么,但不是那种问题吗?
我端口转发。这是页面家伙:(http://110.172.170.83:17416/
对不起,Stackoverflow 不允许数字链接。)
编辑:我发现了问题。但在我解释之前,感谢Bart的 SSCCE,我曾经将其与我的代码进行比较。这就是问题所在:if
第八行的语句if(commule[1].contains("."))
导致代码跳过了这里的大部分代码。在相应的else
块中,甚至没有发送标头的命令。感谢艺术布里斯托尔指出这一点。
提前致谢。