banner



You Can Use The Printwriter Class To Open A File For Writing And Write Data To It.

Join the DZone community and get the full member experience.

Join For Free

In this article, we will look at one of the important classes of Java version 7, PrintWriter. Let's get started.

Introduction

The PrintWriter class in Java was released in Java 7, as a subclass of the Writer class. This class is basically used for printing the formatted representations of objects to a text-output stream.

The PrintWriter class implements all the methods of the PrintStream class. However, this class does not have any methods that are used for writing raw bytes.

Note: the PrintWriter class is also used for write a file in Java.

PrintWriter class in Java

PrintWriter class in Java

The PrintWriter class has some differences when compared to the PrintStream class. In the PrintStream class, when automatic flushing is enabled, output will be sent when the newline character is the output.

But, in the PrintWriter class, when automatic flushing is enabled, ouput will be printed when the following methods are invoked: println, printf , etc.

Basically, the above-mentioned methods use the platform's notion of a line separator, not a new-line character. One important thing about the PrintWriter class is that it never throws any I/O exceptions. However, its constructor does in case of an error.

This class has a method checkError(), which can be invoked by the client to check whether any error is occurred.

You may also like: Java 8 (A Comprehensive Look): Part 1.1 - Lambdas Under the Hood

Methods of PrintWriter Class

Method Description
void println(boolean x) This is used to print the boolean value provided in the method parameter.
void println(char[] x) This method is used to print an array of characters provided in the parameter.
void println(int x) This is used for printing an integer value.
PrintWriter append(char c) This method appends the specified character to the writer.
PrintWriter append(CharSequence ch) This method appends the specified character sequence to the writer.
PrintWriter append(CharSequence ch, int start, int end) This method is used for appending a subsequence of specified character to the writer.
boolean checkError() This method is used to flushes the stream and check its error state.
protected void setError() This method indicates that an error occurs.
protected void clearError() This method is used to clear all the errors.
PrintWriter format(String format, Object... args) This method is used for writing a formatted string to the writer using specified arguments and format string.
void print(Object obj) This method simply prints the object.
void flush() This method flushes the stream.
void close() This is to close the stream.

PrintWriter Example


Further Reading

  • Groovy Goodness: Redirecting Print Methods in Scripts.
  • Java I/O Annoyances: Method to the Madness.
  • Modern Java.

Topics:

java, printwriter, printstream, i/o, tutorial

Opinions expressed by DZone contributors are their own.

You Can Use The Printwriter Class To Open A File For Writing And Write Data To It.

Source: https://dzone.com/articles/printwriter-java-with-example

Posted by: musialanated1978.blogspot.com

0 Response to "You Can Use The Printwriter Class To Open A File For Writing And Write Data To It."

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel