I did check out the other questions that had been about this. But the provided solutions seemed to not work for me. I have an input file made of hexadecimal characters. After reading the characters in as a String my program calculates a CRC-16 value for the file. After doing to I need to Append that CRC-16 value to the end of the file. How can can I do this simply.
For example) Input file reads: 45 CRC-16: 7464 The original file should be append to read: 457464
I'm am not that well versed in file i/o and I have been quite dependent on the Scanner and URL classes for getting paths and reading data.