writeInt(int): This method is available in the java.io.DataOutputStream class of Java.
Syntax:
void java.io.DataOutputStream.writeInt(int v) throws IOException
This method takes one argument. This method writes an int to the underlying output stream as four bytes, the high byte first.
Note: If no exception is thrown, the counter written is incremented by 4.
Parameters: One parameter is required for this method.
v: an int 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 DataOutputStreamwriteInt {public static void main(String[] args) throws IOException {FileOutputStream file =new FileOutputStream("D:\\hello.txt");DataOutputStream data = new DataOutputStream(file);int v = 1001;data.writeInt(v);System.out.println("Successfully writes");data.close();}}
Output:
Successfully writes
No comments:
Post a Comment