Posted By:
Gerrit_Goetsch
Posted On:
Wednesday, August 11, 2004 09:56 AM
You can use a java.io.FileOutputStream.
There is a method
write(byte byte[]) which you can use to write any byte array to a file.
The simplest way is something like:
byte[] b = new byte[10];
java.io.FileOutputStream out = new java.io.FileOutputStream("filename");
out.write(b);
out.flush();
out.close();