美文网首页
retrofit下载

retrofit下载

作者: 代来 | 来源:发表于2020-04-13 14:50 被阅读0次

    privatebooleanwriteFileToSDCard(ResponseBodybody){try{// todo change the file location/name according to your needsFilefutureStudioIconFile=newFile(getExternalFilesDir(null)+File.separator+"Future Studio Icon.png");InputStreaminputStream=null;OutputStreamoutputStream=null;try{byte[]fileReader=newbyte[4096];longfileSize=body.contentLength();longfileSizeDownloaded=0;inputStream=body.byteStream();outputStream=newFileOutputStream(futureStudioIconFile);while(true){intread=inputStream.read(fileReader);if(read==-1){break;}outputStream.write(fileReader,0,read);fileSizeDownloaded+=read;Log.d(TAG,"file download: "+fileSizeDownloaded+" of "+fileSize);}outputStream.flush();returntrue;}catch(IOExceptione){returnfalse;}finally{if(inputStream!=null){inputStream.close();}if(outputStream!=null){outputStream.close();}}}catch(IOExceptione){returnfalse;}}

    @Streaming@GETCall<ResponseBody>downloadFileWithDynamicUrlAsync(@UrlString fileUrl);

    相关文章

      网友评论

          本文标题:retrofit下载

          本文链接:https://www.haomeiwen.com/subject/pfngmhtx.html