Answer the question
In order to leave comments, you need to log in
How to conjugate the non-conjugated?
The beginning of the problem is here
It would seem that I independently found a solution:
InputStream in = new java.net.URL(url).openStream();
FileWriter fWriter = new FileWriter(sdCardFile, false);
byte[] buf = new byte[128];
while(true){
int n = in.read(buf);
if(n == -1){
break;
}
}
fWriter.write(buf);
fWriter.close();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question