BOX:如何使用文件url下载文件?

时间:2016-09-27 00:15:14

标签: box-api box

我想使用Box SDK下载文件。我在本地变量

中提供了文件链接
 var url = https://mycompany.box.com/s/c565vhytyhx5s85vjg03bgtr0h47d6nh

目前BoxClient.FilesManager.DownloadStreamAsync(fileid)将fileid作为参数。

如何使用网址从Box下载文件?

1 个答案:

答案 0 :(得分:0)

使用以下代码使用框api

从Box下载文件
 BoxFile file=new BoxFile(api, fileID);
 FileOutputStream fOut = new FileOutputStream(file path);
 URL DownloadUrl=file.getDownloadURL();
 BufferedInputStream input=new BufferedInputStream(DownloadUrl.openStream());

并将上面的文件“input”写入FileOutputStream,其中包含您想要的文件路径