Java Reference
In-Depth Information
void writeByte(int v)
Available in CLDC.
void writeBytes(String s)
Not available in CLDC. Please note: This method
writes 8-bit chars only and differs from
w rite (s.getBytes());
void writeChar(int v)
Available in CLDC.
void writeChars(String s)
Available in CLDC.
void writeDouble(double v)
Available in CLDC-NG.
void writeFloat(float v)
Available in CLDC-NG.
void writeInt(int v)
Available in CLDC.
void writeLong(long v)
Available in CLDC.
void writeShort(int v)
Available in CLDC.
void writeUTF(String str)
Available in CLDC.
InputStreamReader
Table B.65. Methods of the Class InputStre a mReader
Method
Alternative/Workaround
InputStreamReader(InputStream in)
Available in CLDC.
InputStreamReader(InputStream in, String enc)
Available in CLDC.
void close()
Available in CLDC.
String getEncoding()
Not available in CLDC.
void mark(int readAheadLimit)
Available in CLDC.
boolean markSupported()
Available in CLDC.
int read(char[] cbuf)
Available in CLDC.
int read()
Available in CLDC.
int read(char[] cbuf, int off, int len)
Available in CLDC.
boolean ready()
Available in CLDC.
void reset()
Available in CLDC.
long skip(long n)
Available in CLDC.
OutputStreamWriter
Table B.66. Methods of the Class OutputStre a mWriter
Method
Alternative/Workaround
OutputStreamWriter(OutputStream out)
Available in CLDC.
OutputStreamWriter(OutputStream out, String enc)
Available in CLDC.
void close()
Available in CLDC.
void flush()
Available in CLDC.
String getEncoding()
Not available in CLDC.
void write(char[] cbuf)
Available in CLDC.
void write(String str)
Available in CLDC.
void write(char[] cbuf, int off, int len)
Available in CLDC.
void write(int c)
Available in CLDC.
void write(String str, int off, int len)
Available in CLDC.
PrintStream
Search WWH ::




Custom Search