Java.io.BufferedWriter.newLine() Method
Advertisements
Description
The java.io.BufferedWriter.newLine() method write separator to the buffered writer stream.
Declaration
Following is the declaration for java.io.BufferedWriter.newLine() method:
public void newLine()
Parameters
Return Value
This method does not return any value.
Exception
IOException -- If an I/O error occurs.
Example
The following example shows the usage of java.io.BufferedWriter.newLine() method.
package com.tutorialspoint;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.StringWriter;
public class BufferedWriterDemo {
public static void main(String[] args) throws IOException {
StringWriter sw =null;
BufferedWriter bw = null;
String s = "Hello World!!";
try{
// create new string writer
sw = new StringWriter();
// create new buffered writer
bw = new BufferedWriter(sw);
// write string sequence to buffered writer
bw.write(s, 0, 5);
// write new line to the buffered writer
bw.newLine();
// write the next string sequence to buffered writer
bw.write(s, 6, s.length()-6);
// releases all bytes to the underlying stream
bw.flush();
// print
System.out.print(sw.getBuffer());
}catch(Exception e){
// if any I/O error occurs
e.printStackTrace();
}finally{
// releases system resources from the streams
if(sw!=null)
sw.close();
if(bw!=null)
bw.close();
}
}
}
Let us compile and run the above program, this will produce the following result:
Hello World!!