Java.io.PrintStream.append() Method



Description

The java.io.PrintStream.append() method appends the specified character to this output stream.

Declaration

Following is the declaration for java.io.PrintStream.append() method.

public PrintStream append(char c)

Parameters

c − The 16-bit character to append.

Return Value

This method returns this output stream.

Exception

NA

Example

The following example shows the usage of java.io.PrintStream.append() method.

package com.tutorialspoint;

import java.io.*;

public class PrintStreamDemo {
   public static void main(String[] args) {
      char c = 'A';

      // create printstream object
      PrintStream ps = new PrintStream(System.out);

      // append our characters
      ps.append(c);
      ps.append('y');
      ps.append('m');

      // print the result
      ps.flush();
      ps.close();
   }
}

Let us compile and run the above program, this will produce the following result −

Aym
java_io_printstream.htm
Advertisements