how can i tell if a binary write operation worked?

  • Thread starter Thread starter John Salerno
  • Start date Start date
J

John Salerno

I just experimented with converting a large string array into an int
array, then writing that array to a file. I figured it would be a long
line of text I couldn't really read, but instead it is columns of of 0s
and 1s in pairs, followed by a semicolon and then a string of periods.
Preceding each row is what appears to be a hex number. Is there a way to
make sense of this file by looking at it, or do I just need to
programmatically check it by pulling out random values and seeing if
they are correct?
 
Back
Top