
- Java.io - Home
- Java.io - BufferedInputStream
- Java.io - BufferedOutputStream
- Java.io - BufferedReader
- Java.io - BufferedWriter
- Java.io - ByteArrayInputStream
- Java.io - ByteArrayOutputStream
- Java.io - CharArrayReader
- Java.io - CharArrayWriter
- Java.io - Console
- Java.io - DataInputStream
- Java.io - DataOutputStream
- Java.io - File
- Java.io - FileDescriptor
- Java.io - FileInputStream
- Java.io - FileOutputStream
- Java.io - FilePermission
- Java.io - FileReader
- Java.io - FileWriter
- Java.io - FilterInputStream
- Java.io - FilterOutputStream
- Java.io - FilterReader
- Java.io - FilterWriter
- Java.io - InputStream
- Java.io - InputStreamReader
- Java.io - LineNumberInputStream
- Java.io - LineNumberReader
- Java.io - ObjectInputStream
- Java.io - ObjectInputStream.GetField
- Java.io - ObjectOutputStream
- io - ObjectOutputStream.PutField
- Java.io - ObjectStreamClass
- Java.io - ObjectStreamField
- Java.io - OutputStream
- Java.io - OutputStreamWriter
- Java.io - PipedInputStream
- Java.io - PipedOutputStream
- Java.io - PipedReader
- Java.io - PipedWriter
- Java.io - PrintStream
- Java.io - PrintWriter
- Java.io - PushbackInputStream
- Java.io - PushbackReader
- Java.io - RandomAccessFile
- Java.io - Reader
- Java.io - SequenceInputStream
- Java.io - SerializablePermission
- Java.io - StreamTokenizer
- Java.io - StringBufferInputStream
- Java.io - StringReader
- Java.io - StringWriter
- Java.io - Writer
- Java.io package Useful Resources
- Java.io - Discussion
Java - DataOutputStream flush() method
Description
The Java DataOutputStream flush() method forces bytes to be written to the underlying stream. This method calls the flush method of its underlying output stream.
Declaration
Following is the declaration for java.io.DataOutputStream.flush() method −
public void flush()
Parameters
NA
Return Value
This method does not return any value.
Exception
IOException− If an I/O error occurs.
Example - Usage of DataOutputStream flush() method
The following example shows the usage of Java DataOutputStream flush() method. We've created InputStream, DataInputStream, FileOutputStream and DataOutputStream reference. A String[] buf is initialized with some string values. A FileOutputStream object is created with a File. Then DataOutputStream is initialized with FileOutputStream object created before. Then string array is iterated to write string values to the dataoutputstream.
Once string arrays is fully written into the stream, we've flushed the stream to store the values in the file using flush() method. 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 readUtf() method, we're reading every value as String. Finally we're closing all the streams.
DataOutputStreamDemo.java
package com.tutorialspoint; 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 DataOutputStreamDemo { public static void main(String[] args) throws IOException { InputStream is = null; DataInputStream dis = null; FileOutputStream fos = null; DataOutputStream dos = null; String[] buf = {"Hello", "World!!"}; try { // create file output stream fos = new FileOutputStream("test.txt"); // create data output stream dos = new DataOutputStream(fos); // for each string in the buffer for (String j:buf) { // write string encoded as modified UTF-8 dos.writeUTF(j); } // force data to the underlying stream dos.flush(); // create file input stream is = new FileInputStream("test.txt"); // create new data input stream dis = new DataInputStream(is); // read till end of the stream while(dis.available()>0) { // reads characters encoded with modified UTF-8 String k = dis.readUTF(); // print System.out.print(k+" "); } } 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 −
Hello World!!
Example - Usage of DataOutputStream flush() method
The following example shows the usage of Java DataOutputStream flush() method. We've created InputStream, DataInputStream, FileOutputStream and DataOutputStream reference. A String[] buf is initialized with some string values. A FileOutputStream object is created with a File. Then DataOutputStream is initialized with FileOutputStream object created before. Then string array is iterated to write string values to the dataoutputstream.
Once string arrays is fully written into the stream, we're not flushing 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 readUtf() method, we're reading every value as String. 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.
DataOutputStreamDemo.java
package com.tutorialspoint; 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; String[] buf = {"Hello", "World!!"}; try { // create file output stream fos = new FileOutputStream("test.txt"); // create data output stream dos = new DataOutputStream(fos); // for each String in the buffer for (String j:buf) { // write string encoded as modified UTF-8 dos.writeUTF(j); } // do not force Strings to the underlying stream // dos.flush(); // create file input stream is = new FileInputStream("test.txt"); // create new data input stream dis = new DataInputStream(is); // read till end of the stream while(dis.available()>0) { // reads characters encoded with modified UTF-8 String k = dis.readUTF(); // print System.out.print(k+" "); } } 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 −
Hello World!!
Example - Usage of DataOutputStream flush() method
The following example shows the usage of Java DataOutputStream flush() method.
DataOutputStreamDemo.java
package com.tutorialspoint; import java.io.DataOutputStream; import java.io.IOException; public class DataOutputStreamDemo { public static void main(String[] args) { try { DataOutputStream dataOutput = new DataOutputStream(System.out); // Write data in a human-readable format System.out.println("Integer: " + 100); System.out.println("Double: " + 99.99); System.out.println("String: " + "Hello, World!"); dataOutput.flush(); } catch (IOException e) { e.printStackTrace(); } } }
Output
Let us compile and run the above program, this will produce the following result −
Integer: 100 Double: 99.99 String: Hello, World!
The flush() method flushes the stream. If the stream has saved any characters from the various write() methods in a buffer, write them immediately to their intended destination. Then, if that destination is another character or byte stream, flush it. Thus one flush() invocation will flush all the buffers in a chain of Writers and OutputStreams. So it is not necessary to use flush() to reflect the changes but it is a good practice to use flush() method to clear the buffers.
If you want to use DataOutputStream to write to the console instead of a file, you can wrap it around System.out. However, DataOutputStream writes binary data, so the output might not be human-readable.
If you want human-readable output, use System.out.print() instead of DataOutputStream.