我在JAVA中编写基本的Web服务器时遇到了一些麻烦。目前它正在提供html或css文件。但是当谈到图像时,事情就搞砸了。我认为我在阅读图像文件并准备发送它时做错了。但看看代码:
public void launch()
{
while(true)
{
try
{
Socket connection = this.server_socket.accept();
...
PrintWriter print_writer = new PrintWriter(connection.getOutputStream());
String response = this.readFile(this.request_header.get("Resource"));
print_writer.print(response);
print_writer.flush();
connection.close();
}
catch(...)
{
...
}
}
}
private String readFile(String path)
{
try
{
...
FileInputStream file_input_stream = new FileInputStream(path);
int bytes = file_input_stream.available();
byte[] response_body = new byte[bytes];
file_input_stream.read(response_body);
this.response_body = new String(response_body);
file_input_stream.close();
this.setResponseHeader(200, file_ext);
this.response_header = this.response_header + "\r\n\r\n" + this.response_body;
}
catch(...)
{
...
}
return this.response_header;
}
所以我的浏览器收到的内容如下:
HTTP/1.0 200 OK
Content-type: image/jpeg
[String that was read in readFile()]
但是Chrome没有正确显示图像,歌剧不能全部显示!我曾经用BufferedReader读取文件,但我发现有人说BufferedReader无法正确处理二进制数据所以我尝试使用FileInputStream,但问题保持不变):
提前感谢任何提示和帮助(:
答案 0 :(得分:2)
您必须在两端使用流:输入流和输出流。读者和编写者假设内容是Unicode并对字节流进行调整。 PrintWriter当然是作家。