Java IO Tutorial - Java BufferedWriter.write(int c)








Syntax

BufferedWriter.write(int c) has the following syntax.

public void write(int c)  throws IOException

Example

In the following code shows how to use BufferedWriter.write(int c) method.

// www.  j av  a  2  s.c om

import java.io.BufferedWriter;
import java.io.IOException;
import java.io.StringWriter;

public class Main {
  public static void main(String[] args) throws IOException {

    StringWriter sw = new StringWriter();

    BufferedWriter bw = new BufferedWriter(sw);

    for (int i = 65; i <= 90; i++) {
      bw.write(i);
    }

    bw.flush();

    StringBuffer sb = sw.getBuffer();

    System.out.println(sb);

  }
}

The code above generates the following result.