164.100.110.166 writes:
Hi folks,
I am trying to work with data files. When I open file usinf FileOutputStream class the file if it exists is overwritten.
Cannot I open a file in append mode or must I use the RandomFile Class
Thank You So Much for checking this question out
Jaya
148.5.110.71 writes:
Jaya,
Have you tried using:
public void write(byte b[],
int off,
int len) throws IOException;
and specifying an offset?
Scott_M2