RandomAccessFile: writeBytes(String s) : RandomAccessFile « java.io « Java by API






RandomAccessFile: writeBytes(String s)

 
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.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: seek(long pos)
14.RandomAccessFile: write(byte[] b)
15.RandomAccessFile: writeBoolean(boolean v)
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)