Java.io.PrintWriter.write() Method
Description
The java.io.PrintWriter.write() method writes a single character.
Declaration
Following is the declaration for java.io.PrintWriter.write() method.
public void write(int c)
Parameters
c − int specifying a character to be written.
Return Value
This method does not return a value.
Exception
NA
Example
The following example shows the usage of java.io.PrintWriter.write() method.
package com.tutorialspoint;
import java.io.*;
public class PrintWriterDemo {
public static void main(String[] args) {
int i = 70;
// create a new writer
PrintWriter pw = new PrintWriter(System.out);
// write integer as ASCII characters
pw.write(i);
pw.write(76);
// flush the writer
pw.flush();
}
}
Let us compile and run the above program, this will produce the following result −
FL
java_io_printwriter.htm
Advertisements