Home » Java programming language

Java RandomAccessFile writeShort() Method with Example

RandomAccessFile Class writeShort() method: Here, we are going to learn about the writeShort() method of RandomAccessFile Class with its syntax and example.
Submitted by Preeti Jain, on March 23, 2020

RandomAccessFile Class writeShort() method

  • writeShort() method is available in java.io package.
  • writeShort() method is used to write the short value to the file as 2 bytes directly without any conversion.
  • writeShort() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
  • writeShort() method may throw an exception at the time of writing short value.
    IOException: This exception may throw an exception while performing input/output operation.

Syntax:

    public final void writeShort(int val);

Parameter(s):

  • int val – represents an integer value to write.

Return value:

The return type of this method is void, it returns nothing.

Example:

// Java program to demonstrate the example 
// of void writeShort(int val)a method of
// RandomAccessFile

import java.io.*;
class RAFWriteShort {
 public static void main(String[] args) throws Exception {
  short sh = 12478;
  // Instantiate a random access file
  // object with file name and permissions
  RandomAccessFile ra_f = new RandomAccessFile("e:/includehelp.txt", "rw");

  // By using writeShort() method is to 
  // write a short value to the file
  ra_f.writeShort(sh);

  // by using seek() method is to 
  // set the current file indicator
  // from where read/write could 
  // start i.e. we set here 0 so reading
  // will be done from 0 till EOF
  ra_f.seek(0);

  // By using readShort() method is to 
  // read a short value from this file
  System.out.print("ra_f.readShort(): " + ra_f.readShort());

  // By using close() method isto
  // close this stream ran_f
  ra_f.close();
 }
}

Output

ra_f.readShort(): 12478


Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.