gpt4 book ai didi

java - HttpServer - HttpExchange - 可查找流

转载 作者:行者123 更新时间:2023-12-01 14:16:46 25 4
gpt4 key购买 nike

我正在开发一个示例 java http 服务器和一个 .Net 客户端(在平板电脑上)。使用我的 http 服务器,.Net 客户端必须能够下载文件。

它工作得很好,但现在我必须能够在连接中断后恢复下载。

这里有一些代码:

Java 服务器:(它是在单独的线程中启动的,因此是 run 方法)。

public void run() {

try {
server = com.sun.net.httpserver.HttpServer.create(
new InetSocketAddress(
portNumber), this.maximumConnexion);

server.setExecutor(executor);
server.createContext("/", new ConnectionHandler(this.rootPath));
server.start();


} catch (IOException e1) {
//For debugging
e1.printStackTrace();
}

}

我的 HttpHandler :(仅处理 GET 请求的部分)

/**
* handleGetMethod : handle GET request. If the file specified in the URI is
* available, send it to the client.
*
* @param httpExchange
* @throws IOException
*/
private void handleGetMethod(HttpExchange httpExchange) throws IOException {

File file = new File(this.rootPath + this.fileRef).getCanonicalFile();

if (!file.isFile()) {
this.handleError(httpExchange, 404);
} else if (!file.getPath().startsWith(this.rootPath.replace('/', '\\'))) { // windows work with anti-slash!
// Suspected path traversal attack.
System.out.println(file.getPath());
this.handleError(httpExchange, 403);
} else {
//Send the document.


httpExchange.sendResponseHeaders(200, file.length());
System.out.println("file length : "+ file.length() + " bytes.");


OutputStream os = httpExchange.getResponseBody();

FileInputStream fs = new FileInputStream(file);

final byte[] buffer = new byte[1024];
int count = 0;
while ((count = fs.read(buffer)) >= 0) {
os.write(buffer, 0, count);
}
os.flush();
fs.close();
os.close();
}

}

现在是我的 .Net 客户端:(简化)

  try{

Stream response = await httpClient.GetStreamAsync(URI + this.fileToDownload.Text);


FileSavePicker savePicker = new FileSavePicker();
savePicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary;
// Dropdown of file types the user can save the file as
savePicker.FileTypeChoices.Add("Application/pdf", new List<string>() { ".pdf" });
// Default file name if the user does not type one in or select a file to replace
savePicker.SuggestedFileName = "new doc";

StorageFile file = await savePicker.PickSaveFileAsync();

if (file != null)
{

const int BUFFER_SIZE = 1024*1024;
using (Stream outputFileStream = await file.OpenStreamForWriteAsync())
{
using (response)
{
var buffer = new byte[BUFFER_SIZE];
int bytesRead;
do
{
bytesRead = response.Read(buffer, 0, BUFFER_SIZE);
outputFileStream.Write(buffer, 0, bytesRead);
} while (bytesRead > 0);
}
outputFileStream.Flush();
}

}

}
catch (HttpRequestException hre)
{ //For debugging
this.Display.Text += hre.Message;
this.Display.Text += hre.Source;
}
catch (Exception ex)
{
//For debugging
this.Display.Text += ex.Message;
this.Display.Text += ex.Source;
}

因此,为了恢复下载,我想在 .Net 客户端部分使用一些查找操作。但是每次我尝试诸如 response.Seek(offset, response.Position); 之类的操作时,都会发生错误,通知 Stream 不支持查找操作。是的,它没有,但是我如何指定(在我的服务器端)使用可查找流?HttpExchange.setStreams 方法有用吗?或者,我不需要修改流而是配置我的 HttpServer 实例?

谢谢。

最佳答案

很好地使用 Range、Accept-Range 和 Content-Range 字段。只需要做一点工作即可发送文件的正确部分并设置响应的 header 。

服务器可以通过设置Accept-Range字段来通知客户端它支持Range字段:

responseHeader.set("Accept-Ranges", "bytes");

然后在发送部分文件时设置 Content-range 字段:

responseHeader.set("Content-range", "bytes " + this.offSet + "-" + this.range + "/" + this.fileLength);

最后,返回码必须设置为 206(部分内容)。

有关范围、接受范围和内容范围字段的更多信息,请参阅 http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html

注意:Opera 12.16 使用“Range”字段来恢复下载,但 IE 10 和 Firefox 22 似乎不使用该字段。可能是我最初寻找的一些可搜索流。如果有人对此有答案,我会很高兴阅读它 =)。

关于java - HttpServer - HttpExchange - 可查找流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18062088/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com