Retrofit 实现上传下载文件

时间:2022-02-28 21:01:55

1.创建上传接口

2.调用上传

3.创建下载接口

4.调用 

 FileHelper.getBytesFromStream 代码如下:

 

保存到指定路径文件:
public static void saveBytesToFile(byte[] bytes,String path){try{
FileOutputStreamfileOuputStream=newFileOutputStream(path);
f ileOuputStream.write(bytes);
}catch(FileNotFoundExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}finally{
fileOuputStream.close();
}
}

 

本文出自 Lac,转载时请注明出处及相应链接。
本文永久链接: http://www.xueyong.net.cn/archives/39