Write an input stream to a file
public class InputStreamToFileApp {
public static void main(String[] args) {
InputStream inputStream = null;
OutputStream outputStream = null;
try {
// read this file into InputStream
inputStream = new FileInputStream("/Users/mkyong/Downloads/holder.js");
// write the inputStream to a FileOutputStream
outputStream =
new FileOutputStream(new File("/Users/mkyong/Downloads/holder-new.js"));
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();
}
}
}
}
}