我正在做我的一個項目,比如 youtube 我已經(jīng)完成了上傳視頻的部分,但我被困在如何將這些視頻播放到 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); }}
如何將視頻返回給郵遞員
慕田峪7331174
2022-11-02 17:26:54