尝试播放使用FTPWebRequest上传到FTP服务器的视频文件时出错

时间:2016-11-01 15:26:16

标签: asp.net ftpwebrequest

当我尝试使用.net代码播放上传到FTP服务器的视频时,它说“无法播放”。项目无法播放,请重新获取内容。 0xc00d36e5'

以下是我用来将视频文件上传到FTP服务器的代码:

@RequestMapping(value = "/save", method = RequestMethod.POST, produces = "application/json")
public ResponseEntity<PModel> saveProgram(Authentication authentication, @RequestBody PModel p){


    m = pService.saveP(p, authentication.getName());
    return new ResponseEntity<PModel>(m, HttpStatus.OK);
}

任何人都可以指出我做错了什么,否则我错过了什么?

1 个答案:

答案 0 :(得分:0)

解决了这个问题! 我没有将视频文件直接上传到FTP服务器,而是将视频上传到网站服务器某处的临时位置,然后使用FTPWebRequest将其传输到FTP服务器。