|
" 2013 FRC Java API " |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Writer | |
|---|---|
| com.sun.cldc.i18n | |
| com.sun.cldc.i18n.j2me | |
| com.sun.squawk.io | Provides classes from MIDP or unsupportable optional JSRs that are usually in javax.microedition.io, but are not legally in IMP. |
| java.io | Provides classes for input and output through data streams. |
| Uses of Writer in com.sun.cldc.i18n |
|---|
| Subclasses of Writer in com.sun.cldc.i18n | |
|---|---|
class |
StreamWriter
General prototype for character converting stream writers. |
| Methods in com.sun.cldc.i18n that return Writer | |
|---|---|
static Writer |
Helper.getStreamWriter(OutputStream os)
Get a writer for an OutputStream |
static Writer |
Helper.getStreamWriter(OutputStream os,
String name)
Get a writer for an OutputStream |
Writer |
StreamWriter.open(OutputStream out,
String enc)
Open the writer |
| Uses of Writer in com.sun.cldc.i18n.j2me |
|---|
| Subclasses of Writer in com.sun.cldc.i18n.j2me | |
|---|---|
class |
ISO8859_1_Writer
Default class for writing output streams. |
| Uses of Writer in com.sun.squawk.io |
|---|
| Subclasses of Writer in com.sun.squawk.io | |
|---|---|
class |
BufferedWriter
Write text to a character-output stream, buffering characters so as to provide for the efficient writing of single characters, arrays, and strings. |
| Constructors in com.sun.squawk.io with parameters of type Writer | |
|---|---|
BufferedWriter(Writer out)
Create a buffered character-output stream that uses a default-sized output buffer. |
|
BufferedWriter(Writer out,
int sz)
Create a new buffered character-output stream that uses an output buffer of the given size. |
|
| Uses of Writer in java.io |
|---|
| Subclasses of Writer in java.io | |
|---|---|
class |
OutputStreamWriter
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to it are translated into bytes. |
|
" 2013 FRC Java API " |
|||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||