RandomAccessFile.writeShort(int v) has the following syntax.
public final void writeShort(int v) throws IOException
In the following code shows how to use RandomAccessFile.writeShort(int v) method.
/* w w w . ja v a 2 s.c o m*/ import java.io.*; public class Main { public static void main(String[] args) { try { short s = 15; RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); raf.writeShort(s); raf.seek(0); System.out.println(raf.readShort()); raf.seek(0); raf.writeShort(20); raf.seek(0); System.out.println(raf.readShort()); raf.close(); } catch (IOException ex) { ex.printStackTrace(); } } }