在Java中,可以使用`java.nio.file.Path`类来将本地文件映射成路径给前端。以下是一个示例代码:
```java
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/file")
public class FileController {
@GetMapping("/download")
public void downloadFile(HttpServletResponse response) {
String filePath = "D:/downloads/test.pdf"; // 假设下载的文件在D盘downloads目录下
Path path = Paths.get(filePath);
if (Files.exists(path)) {
try {
response.setContentType("application/pdf");
response.setHeader("Content-Disposition", "attachment; filename=test.pdf");
Files.copy(path, response.getOutputStream());
response.getOutputStream().flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
```
以上代码中,`downloadFile`方法用于处理文件下载请求。首先指定要下载的文件路径,并使用`Paths.get`方法创建一个`Path`对象表示该文件。然后判断该文件是否存在,如果存在则设置响应头信息,将其内容写入到响应输出流中,最后刷新输出流。
在前端中,可以通过访问该接口获取文件的路径,然后使用该路径进行下载操作。例如,在JavaScript中可以使用以下代码:
```javascript
const url = '/file/download'; // 假设下载接口为/file/download
fetch(url)
.then(response => response.blob())
.then(blob => {
const link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = 'test.pdf';
link.click();
})
.catch(error => console.error(error));
```
以上代码中,`fetch`方法用于获取文件的二进制数据,并将其转换成Blob对象。然后创建一个`
`元素,设置其`href`属性为Blob对象的URL,设置其`download`属性为文件名,最后调用`click`方法触发下载。