Java - DataInputStream readUnsignedShort() method



Description

The Java DataInputStream readUnsignedShort() method returns result as int in the range of 0 through 65535. Reads two input shorts and returns an int value.

Declaration

Following is the declaration for java.io.DataInputStream.readUnsignedShort() method −

public final int readUnsignedShort()

Parameters

NA

Return Value

This method returns unsigned 16-bit value read.

Exception

  • IOException − If the stream is closed or the or any I/O error occurs.

  • EOFException − If the input stream has reached the ends.

Example 1

The following example shows the usage of Java DataInputStream readUnsignedShort() method. We've created InputStream, DataInputStream, FileOutputStream and DataOutputStream reference. A short[] buf is initialized with some short values. A FileOutputStream object is created with a File. Then DataOutputStream is initialized with FileOutputStream object created before. Then short array is iterated to write short values to the dataoutputstream.

Once short arrays is fully written into the stream, we've flush the stream to store the values in the file. Now using FileInputStream and DataInputStream, we're reading the file written earlier. Now we're checking if DataInputStream object has data using available() method. Then using readUnsignedShort() method, we're reading every value as int. Finally we're closing all the streams.

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      short[] b = {-5, 32767};
      
      try {
         // create file output stream
         fos = new FileOutputStream("F:\\test.txt");
         
         // create data output stream
         dos = new DataOutputStream(fos);
         
         // for each short in the buffer
         for (short j:b) {
         
            // write short to the data output stream
            dos.writeShort(j);         
         }
         
         // force shorts to the underlying stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("F:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);
         
         // read till end of the stream
         while(dis.available()>0) {
         
            // read 8 bit unsigned number
            int c = dis.readUnsignedShort();
            
            // print
            System.out.print(c + " ");
         }
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dos!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
      }
   }
}

Output

Let us compile and run the above program, this will produce the following result −

65531 32767  

Example 2

The following example shows the usage of Java DataInputStream readUnsignedShort() method. We've created InputStream, DataInputStream, FileOutputStream and DataOutputStream reference. A short[] buf is initialized with some short values. A FileOutputStream object is created with a File. Then DataOutputStream is initialized with FileOutputStream object created before. Then short array is iterated to write short values to the dataoutputstream.

Once short arrays is fully written into the stream, we've flush the stream to store the values in the file. Now using FileInputStream and DataInputStream, we're reading the file written earlier. Now we're checking if DataInputStream object has data using available() method. Then using readUnsignedShort() method, we're reading every value as int. Now as a special case, we're closing the stream before reading the values to see if this methods throw exception or not. As a result, we can see the available() method throws the exception.

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      short[] b = {-5, 32767};
      
      try {
         // create file output stream
         fos = new FileOutputStream("F:\\test.txt");
         
         // create data output stream
         dos = new DataOutputStream(fos);
         
         // for each short in the buffer
         for (short j:b) {
         
            // write short to the data output stream
            dos.writeShort(j);         
         }
         
         // force shorts to the underlying stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("F:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);

         // close the streams
         is.close();
         dis.close();
         
         // read till end of the stream
         while(dis.available()>0) {
         
            // read 8 bit unsigned number
            int c = dis.readUnsignedShort();
            
            // print
            System.out.print(c + " ");
         }
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dos!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
      }
   }
}

Output

Let us compile and run the above program, this will produce the following result −

java.io.IOException: Stream Closed
	at java.base/java.io.FileInputStream.available0(Native Method)
	at java.base/java.io.FileInputStream.available(FileInputStream.java:330)
	at java.base/java.io.FilterInputStream.available(FilterInputStream.java:167)
	at DataInputStreamDemo.main(DataInputStreamDemo.java:44)

Example 3

The following example shows the usage of Java DataInputStream readUnsignedShort() method. We've created InputStream, DataInputStream, FileOutputStream and DataOutputStream reference. A short[] buf is initialized with some short values. A FileOutputStream object is created with a File. Then DataOutputStream is initialized with FileOutputStream object created before. Then short array is iterated to write short values to the dataoutputstream.

Once short arrays is fully written into the stream, we've flush the stream to store the values in the file. Now using FileInputStream and DataInputStream, we're reading the file written earlier. Now we're checking if DataInputStream object has data using available() method. Then using readUnsignedShort() method, we're reading every value as int. Now as a special case, we're reading shorts after all shorts are read using readUnsignedShort() method. As a result, we can see the readUnsignedShort() throws an EOFException.

import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class DataInputStreamDemo {
   public static void main(String[] args) throws IOException {
      InputStream is = null;
      DataInputStream dis = null;
      FileOutputStream fos = null;
      DataOutputStream dos = null;
      short[] b = {-5, 32767};
      
      try {
         // create file output stream
         fos = new FileOutputStream("F:\\test.txt");
         
         // create data output stream
         dos = new DataOutputStream(fos);
         
         // for each short in the buffer
         for (short j:b) {
         
            // write short to the data output stream
            dos.writeShort(j);         
         }
         
         // force shorts to the underlying stream
         dos.flush();
         
         // create file input stream
         is = new FileInputStream("F:\\test.txt");
         
         // create new data input stream
         dis = new DataInputStream(is);
         
         // read till end of the stream
         while(dis.available()>0) {
         
            // read 8 bit unsigned number
            int c = dis.readUnsignedShort();
            
            // print
            System.out.print(c + " ");
         }
		 System.out.print(dis.readUnsignedShort());
         
      } catch(Exception e) {
         // if any I/O error occurs
         e.printStackTrace();
      } finally {
         // releases all system resources from the streams
         if(is!=null)
            is.close();
         if(dos!=null)
            is.close();
         if(dis!=null)
            dis.close();
         if(fos!=null)
            fos.close();
      }
   }
}

Output

Let us compile and run the above program, this will produce the following result −

65531 32767 java.io.EOFException
	at java.base/java.io.DataInputStream.readUnsignedShort(DataInputStream.java:345)
	at DataInputStreamDemo.main(DataInputStreamDemo.java:48)
java_files_io.htm
Advertisements