修复已向 response 中写入文件后,

还会继续执行 response.send404("404 Not Found !"); 
此时会在cn.hutool.http.server.HttpServerResponse#send(int, long) 抛异常

Signed-off-by: lzpeng723 <1500913306@qq.com>
This commit is contained in:
lzpeng723 2023-11-19 04:41:00 +00:00 committed by Gitee
parent 088f3ecfc0
commit b613d1e3a5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -73,11 +73,13 @@ public class RootAction implements Action {
file = FileUtil.file(file, indexFileName);
if (file.exists() && file.isFile()) {
response.write(file);
return;
}
}
} else{
final String name = request.getParam("name");
response.write(file, name);
return;
}
}