文件传输的本质是将文件转化成字节流,作为附件写入到HttpServletResponse的OutputStream中。以服务器本地的文件传输为例,Java代码如下: public void download(HttpServletResponse response) { File file = new File("文件夹" + File.separator + "文件名称"); // 判断文件性质 if (!file.exists() || !file.isFile()) { return;