retrofit实现文件上传和下载
2.
3.Downloading
1
2
3
4
5
6
7
8
9
10
11
12
|
publicstaticvoidsaveBytesToFile(byte[]bytes,Stringpath){
try{
FileOutputStreamfileOuputStream=newFileOutputStream(path);
fileOuputStream.write(bytes);
}catch(FileNotFoundExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}finally{
fileOuputStream.close();
}
}
|