我正在做我的一个项目,比如 youtube 我已经完成了上传视频的部分,但我被困在如何将这些视频播放到 Postman 上?我试过制作返回类型 MultipartFile 类并只返回文件,但它似乎不起作用。@RestControllerpublic class VideoController { @PostMapping(value = "/upload") public void uploadVideo(@RequestParam("video") MultipartFile file) throws IOException { byte[] bytes = file.getBytes(); File newVideo = new File("D:\\test\\" + file.getName() + ".mp4"); FileOutputStream fos = new FileOutputStream(newVideo); fos.write(bytes); }}
添加回答
举报
0/150
提交
取消
