Here we are showing how to convert an InputStream to File.
To do so first read the file as InputStream using FileInputStream. Create FileOutputStream class object to retrieve the file from system for modification then convert the InputSteam into byte array before writing into file then pass this array to the input stream and finally the byte array into file. Now all the data from InputStream is written into the desired file.
The code of the program is given below:
import java.io.*;
|
The output of the program is given below:
C:\rajesh\io>javac InputStreamToFile.java C:\rajesh\io>java InputStreamToFile File is created....................... |
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Convert InputStream to File View All Comments
Post your Comment