Trying to store to an image. bt is byte array
InputStream is = new ByteArrayInputStream(bt);
Image img = ImageIO.read(is);
ImageIO.write(img,"jpg",new File("C:\\home_loan.jpg") );
, please help me,
error - : cannot find symbol
symbol : method write(java.awt.Image,java.lang.String,java.io.File)
location: class javax.imageio.ImageIO
ImageIO.write(img,"jpg",new File("C:\home_loan.jpg") );
^
}brace somewhere in the middle. What is the compiletime or runtime error are you having ? Or is it a logic error ? – Hamed Al-Khabaz Jan 3 at 21:22