• 后端接收文件,上传到oss

    1.使用MultipartFile file接收,不能加requestBody注解2.file.getOriginalFilename()获取文件名称,file.getInputStream()获取文件流3.上传osspublic static String putObject(String fil...

    前端从后端获取文件

    1.后端在Controller中获取到HttpServletResponse response2.获取到文件inputStream,比如从oss下载到3.流写入response// 设置响应格式response.reset();response.setContentType("applic...

    Java中通过url下载文件

    获取到inputStream// 根据url获取文件URL url = new URL(URLDecoder.decode(ossUrl, "UTF-8"));HttpURLConnection conn = (HttpURLConnection) url.openConnect...