私はサーバーからビデオをダウンロードするためにokhttpを使用しています。エラーも例外ではありませんが、ファイルはどこでもダウンロードされているわけではありません。okhttpはファイルをダウンロードしていません
OkHttpClient httpClient = new OkHttpClient();
Call call = httpClient.newCall(new Request.Builder().url("http://res.cloudinary.com/demo/video/upload/v1427018743/ygzxwxmflekucvqcrb8c.mp4").get().build());
try {
File file = new File(getCacheDir(), user_Videos.get(i).video_title+ ".mp4");
OutputStream out = new FileOutputStream(file);
Response response = call.execute();
if (response.code() == 200) {
InputStream inputStream = null;
try {
inputStream = response.body().byteStream();
byte[] buff = new byte[1024 * 8];
long downloaded = 0;
long target = response.body().contentLength();
publishProgress(0L, target);
while (true) {
int readed = inputStream.read(buff);
if (readed == -1) {
break;
}
//write buff
downloaded += readed;
try {
out.write(buff,0,readed);
} catch (Exception e) {
e.printStackTrace();
}
publishProgress(downloaded, target);
if (isCancelled()) {
return false;
}
}
return downloaded == target;
} catch (IOException ignore) {
return false;
} finally {
if (inputStream != null) {
out.flush();
out.close();
inputStream.close();
}
}
} else {
return false;
}
} catch (IOException e) {
e.printStackTrace();
return false;
}
進捗状況が正しく表示されますが、ビデオはディレクトリに表示されていません。ここで
はコードです。
ありがとうございました。
ストレージに書き込む権限を追加しましたか? –
ええ、私は運がなかった。 –
'ビデオがディレクトリに表示されていません。あなたはどのようにそのディレクトリを見ていますか?そしてそのディレクトリの完全なパスは何ですか? – greenapps