DataOutputStream writeShort(int) in Java

writeShort(int): This method is available in the java.io.DataOutputStream class of Java.

Syntax:

void java.io.DataOutputStream.writeShort(int v) throws IOException

This method takes one argument. This method writes a short to the underlying output stream as two bytes, the high byte first.

Note: If no exception is thrown, the counter written is incremented by 2.

Parameters: One parameter is required for this method.

v: a short to be written.

Returns: NA

Throws:

IOException - if an I/O error occurs.

Approach

Java

import java.io.DataOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;

public class DataOutputStreamwriteShort {
    public static void main(String[] args) throws IOException {

        FileOutputStream file =
new FileOutputStream("D:\\hello.txt");
        DataOutputStream data = new DataOutputStream(file);

        short v = 10010;
        data.writeShort(v);
        System.out.println("Successfully writes");
        data.close();

    }
}

Output:

Successfully writes


No comments:

Post a Comment