SpringBoot
咖啡C我
一直坚持下去就好了
展开
-
SpringBoot文件下载
基础版public void downloadFile(HttpServletResponse response) throws IOException { String fileName = "cat.jpg"; //设置响应编码格式 response.setCharacterEncoding("UTF-8"); //设置响应类型...原创 2020-01-03 14:10:41 · 148 阅读 · 0 评论 -
SpringBoot文件上传--至项目路径下
方式一 @Logging(detail = "文件上传") @PostMapping("/upload") @ApiOperation("文件上传") public R upload(@RequestParam("file") MultipartFile file) { if (file.isEmpty()) { return R....原创 2019-12-31 09:15:24 · 1668 阅读 · 0 评论