gpt4 book ai didi

java - 替代 Java 6 中的 Files#copy()

转载 作者:行者123 更新时间:2023-11-29 04:48:06 36 4
gpt4 key购买 nike

<分区>

所以这是我的代码,它已经可以工作了:

public class MyServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse response) throws Exception {
String pathToFile = "myimage.jpg";
File file = new File(pathToFile);
response.setHeader("Content-Type", "image/jpeg");
response.setHeader("Content-Length", String.valueOf(file.length()));
response.setHeader("Content-Disposition", "inline; filename=\"" + file.getName() + "\"");
Files.copy(file.toPath(), response.getOutputStream());
response.flushBuffer();
}
}

但是,我必须在 JDK 1.6 上使用它。

Files.copy 仅适用于 Java 1.7。

有什么建议吗?

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