Using the RandomAccessFile class : RandomAccessFile « File Input Output « Java






Using the RandomAccessFile class

  

import java.io.RandomAccessFile;

public class Main {
  public static void main(String[] args) throws Exception {
    RandomAccessFile randomAccessFile = null;

    String line1 = "line\n";
    String line2 = "asdf1234\n";

    // read / write permissions
    randomAccessFile = new RandomAccessFile("yourFile.dat", "rw");

    randomAccessFile.writeBytes(line1);
    randomAccessFile.writeBytes(line2);

    // Place the file pointer at the end of the first line
    randomAccessFile.seek(line1.length());

    byte[] buffer = new byte[line2.length()];
    randomAccessFile.read(buffer);
    System.out.println(new String(buffer));

    randomAccessFile.close();
  }
}

   
    
  








Related examples in the same category

1.Random IO
2.The RandomAccessFile Class
3.Use RandomAccessFile to reverse a file
4.Using a Random Access File
5.A RandomAccessFile object that is tied to a file called employee.dat.
6.Reading UTF-8 Encoded Data
7.Use RandomAccessFile class
8.Appending data to existing file
9.The class demonstrates the use of java.io.RandomAccessFile
10.Readonly RandomAccessFile
11.Translate Charset
12.Use RandomAccessFile to save an object
13.Reverse a file with RandomAccessFile
14.Read from back
15.Using RandomAccessFile to read file saved DataOutputStreamUsing RandomAccessFile to read file saved DataOutputStream