Package java.io
Class Writer

Public Method write

void write(char[] buf)

Throws:

abstract void write(char[] buf, int offset, int len)

Throws:

void write(int b)

Throws:

void write(String str)

Throws:

void write(String str, int offset, int len)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

write(char []buf) method:

This method writes an array of character.

write(char[] buf, int offset, int len) method:

This method writes a portion of an array of characters.

write(int b) method:

This method writes a single character.

write(String str) method:

This method writes a whole string.

write(String str, int offset, int len) method:

This method is used to write a portion of a string.