文件副本#(),所以這是代碼我有,它已經工作:替代Java 6中
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。
有什麼建議嗎?
順便說一句,response.flushBuffer()是完全沒有必要的。 – BalusC