我想在图像文件中写一个固定大小(比如1024 kb)。我知道以下代码适用于在文件中附加字节。
fos=new FileOutputStream(new File("profile1.jpg"),true);//correct format
ImageIO.write(img, "jpg", new File("C:/test.jpg",true));//did not work out, wrong //code but i want to append the byte 1024 at a time.
是否可以将该字节附加到图像文件中。请任何人帮助我。