Search:

Type: Posts; User: Deprogrammer

Search: Search took 0.23 seconds.

  1. Re: Created a Random Access File that saves gibberish to a text file

    I assumed it was something of that nature, but I do know it was not binary of hexadecimal as I am familiar with each. This is what went to the file:...
  2. Re: Created a Random Access File that saves gibberish to a text file

    Thanks. At first, it seemed like a problem. But using readDouble it works as it should, I was just curious as to what was in the actual text file. Using String the text file is intelligible. Again, a...
  3. Created a Random Access File that saves gibberish to a text file

    File inputFile = new File(".../inputFile.txt");
    RandomAccessFile file = new RandomAccessFile(inputFile,"rw");
    file.seek(inputFile.length());
    file.writeDouble(randomInt);...
Results 1 to 3 of 3