برای انجام این کار باید InputStream را با استفاده از متد read بخوانید و اطلاعات خوانده شده را به یک OutputStream برای ذخیره برروی هارد بدهید (برای مثال FileOutputStream):
OutputStream outputStream = null;
try {
// write the inputStream to a FileOutputStream
outputStream =
new FileOutputStream(new File("test.txt"));
int read = 0;
byte[] bytes = new byte[1024];
while ((read = inputStream.read(bytes)) != -1) {
outputStream.write(bytes, 0, read);
}
System.out.println("Done!");
} catch (IOException e) {
e.printStackTrace();
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (outputStream != null) {
try {
// outputStream.flush();
outputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}