RandomAccessFile: seek(long pos) : RandomAccessFile « java.io « Java by API






RandomAccessFile: seek(long pos)

  
/*
 * Output:
 *  
 */

import java.io.RandomAccessFile;

public class MainClass {

  public static void main(String args[]) {

    try {

      RandomAccessFile raf = new RandomAccessFile(args[0], "r");

      long position = raf.length();

      while (position > 0) {

        position -= 1;

        raf.seek(position);
        byte b = raf.readByte();

        System.out.print((char) b);
      }
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}

           
         
    
  








Related examples in the same category

1.new RandomAccessFile(String fileName, String mode)
2.RandomAccessFile: close()
3.RandomAccessFile: getChannel()
4.RandomAccessFile: getFilePointer()
5.RandomAccessFile: length()
6.RandomAccessFile: read(byte[] b)
7.RandomAccessFile: readBoolean()
8.RandomAccessFile: readByte()
9.RandomAccessFile: readChar()
10.RandomAccessFile: readDouble()
11.RandomAccessFile: readInt()
12.RandomAccessFile: readLine()
13.RandomAccessFile: write(byte[] b)
14.RandomAccessFile: writeBoolean(boolean v)
15.RandomAccessFile: writeBytes(String s)
16.RandomAccessFile: writeChar(int v)
17.RandomAccessFile: writeChars(String s)
18.RandomAccessFile: writeDouble(double v)
19.RandomAccessFile: writeInt(int v)
20.RandomAccessFile: writeUTF(String str)