okhttp没有下载文件

时间:2016-04-11 12:50:48

标签: android video okhttp3

我正在使用okhttp从服务器下载视频。没有错误没有异常,但文件没有下载每个地方,但它似乎是。

以下是代码:

processStartInfo.Arguments = "x \"" + sourceFileName + "\" -o \"" + destinationPath + "\"";

进度正确显示,但视频未显示在目录中。

感谢。

1 个答案:

答案 0 :(得分:0)

所以我的代码没有问题,只有路径。谢谢@greenapps让我考虑路径/目录。

基本上我只是将路径更改为真实路径而不是缓存,而这里是视频。

更改了此行

 File file = new File(getCacheDir(), user_Videos.get(i).video_title  + ".mp4");

到这个

 File file = new File(Environment.getExternalStorageDirectory(), user_Videos.get(i).video_title+ ".mp4");

感谢@greenapps的线索。