File inputFile = new File(".../inputFile.txt");
RandomAccessFile file = new RandomAccessFile(inputFile,"rw");
file.seek(inputFile.length());
file.writeDouble(randomInt);
file.close();
When I directly access the .../inputFile.txt file it is entirely gibberish. Is this a problem? If so, how do I fix it?
Thanks in advance.