I want to save a download image into raw folder. I tried below code for downloading image
public class Image extends FilterInputStream {
public Image(InputStream in) {
super(in);
}
public long skip(long n) throws IOException {
long m = 0L;
while (m < n) {
long _m = in.skip(n-m);
if (_m == 0L) break;
m += _m;
}
return m;
}
}
The above code is working for downloading the image, so I want to save that download in raw folder. Please tell me the process.