Ok I have a file with a header which I've read and know the exact location of the particular element that I want to read. What I want to do now is overwrite that particular element of the file with a byte representation of a
String. How do i do this, and also without creating a new file, cause I'm using a
FileInStream->BufferedInStream->DataInStream
to do the reading and I don't want to create a brand new
FileOutStream->BufferedOutStream->DataOutStream
to do the writing. I want to just overwrite particular elements in the file header. Thanks, John