|
2010 FRC Java API |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OutputStream | |
---|---|
com.sun.cldc.i18n | |
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. |
com.sun.squawk.io.j2me.multicast | |
com.sun.squawk.io.j2me.pipe | |
com.sun.squawk.microedition.io | Provides classes from MIDP or unsupportable optional JSRs that are usually in javax.microedition.io, but are not legally in IMP. |
com.sun.squawk.util | Provides classes for basic utilities sometimes found in JSE (LineReader, unsynchronized Vectors, Math utilities, etc.) |
java.io | Provides classes for input and output through data streams. |
javax.microedition.io | Classes for the Generic Connection framework. |
Uses of OutputStream in com.sun.cldc.i18n |
---|
Fields in com.sun.cldc.i18n declared as OutputStream | |
---|---|
OutputStream |
StreamWriter.out
Output stream to write to |
Methods in com.sun.cldc.i18n with parameters of type OutputStream | |
---|---|
Writer |
StreamWriter.open(OutputStream out,
String enc)
Open the writer |
Uses of OutputStream in com.sun.squawk.io |
---|
Subclasses of OutputStream in com.sun.squawk.io | |
---|---|
class |
MulticastOutputStream
A MulticastOutputStream can be configured to send its output to zero or more named output streams. |
Methods in com.sun.squawk.io that return OutputStream | |
---|---|
OutputStream |
MulticastOutputStream.add(String name,
OutputStream out)
Adds a given output stream to those contained by this multicaster. |
OutputStream |
MulticastOutputStream.get(String name)
Gets the output stream from this multicaster identified by a given name. |
OutputStream |
ConnectionBase.openOutputStream()
Open and return a data output stream for a connection. |
OutputStream |
MulticastOutputStream.remove(String name)
Removes a given output stream from those contained by this multicaster. |
Methods in com.sun.squawk.io with parameters of type OutputStream | |
---|---|
OutputStream |
MulticastOutputStream.add(String name,
OutputStream out)
Adds a given output stream to those contained by this multicaster. |
Uses of OutputStream in com.sun.squawk.io.j2me.multicast |
---|
Methods in com.sun.squawk.io.j2me.multicast that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Opens and returns an output stream for this connection. |
Uses of OutputStream in com.sun.squawk.io.j2me.pipe |
---|
Subclasses of OutputStream in com.sun.squawk.io.j2me.pipe | |
---|---|
class |
PipeOutputStream
|
Fields in com.sun.squawk.io.j2me.pipe declared as OutputStream | |
---|---|
protected OutputStream[] |
PipeServerSocketListener.outputs
|
Methods in com.sun.squawk.io.j2me.pipe that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Open an OutputStream for this connection. |
Uses of OutputStream in com.sun.squawk.microedition.io |
---|
Methods in com.sun.squawk.microedition.io that return OutputStream | |
---|---|
OutputStream |
FileConnection.openOutputStream()
|
OutputStream |
FileConnection.openOutputStream(long byteOffset)
|
Uses of OutputStream in com.sun.squawk.util |
---|
Subclasses of OutputStream in com.sun.squawk.util | |
---|---|
class |
ByteArrayOutputStreamWithGetBytes
An extention of ByteArrayOutputStream that allows the byte array buffer to be read directly, using the
ByteArrayOutputStreamWithGetBytes.getBytes() method. |
Uses of OutputStream in java.io |
---|
Subclasses of OutputStream in java.io | |
---|---|
class |
ByteArrayOutputStream
This class implements an output stream in which the data is written into a byte array. |
class |
DataOutputStream
A data input stream lets an application write primitive Java data types to an output stream in a portable way. |
class |
PrintStream
A PrintStream adds functionality to another output stream,
namely the ability to print representations of various data values
conveniently. |
Fields in java.io declared as OutputStream | |
---|---|
protected OutputStream |
DataOutputStream.out
The output stream. |
Constructors in java.io with parameters of type OutputStream | |
---|---|
DataOutputStream(OutputStream out)
Creates a new data output stream to write data to the specified underlying output stream. |
|
OutputStreamWriter(OutputStream os)
Create an OutputStreamWriter that uses the default character encoding. |
|
OutputStreamWriter(OutputStream os,
String enc)
Create an OutputStreamWriter that uses the named character encoding. |
|
PrintStream(OutputStream out)
Create a new print stream. |
Uses of OutputStream in javax.microedition.io |
---|
Methods in javax.microedition.io that return OutputStream | |
---|---|
OutputStream |
OutputConnection.openOutputStream()
Open and return an output stream for a connection. |
static OutputStream |
Connector.openOutputStream(String name)
Create and open a connection output stream. |
|
2010 FRC Java API |
|||||||||
PREV NEXT | FRAMES NO FRAMES |