Perry Smith

Java Questions & Answers

Archive

Home / Java Q & A Archive Page 4 / Java Q & A Archive / Java Main Page

Append Text to a Data File
Wednesday, 03-Mar-99 03:21:57

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


Response
Re: Append Text to a Data File
Wednesday, 03-Mar-99 12:13:56

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
Home / Java Q & A Archive Page 4 / Java Q & A Archive / Java Main Page