|
" 2013 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.channel | |
com.sun.squawk.io.j2me.debug | |
com.sun.squawk.io.j2me.dserror | |
com.sun.squawk.io.j2me.file | |
com.sun.squawk.io.j2me.http | |
com.sun.squawk.io.j2me.multicastoutput | |
com.sun.squawk.io.j2me.socket | |
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.) |
edu.wpi.first.wpilibj.networktables2.stream | |
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 | |
---|---|
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 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 |
ConnectionBaseAdapter.openOutputStream()
Returns an output stream. |
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.channel |
---|
Subclasses of OutputStream in com.sun.squawk.io.j2me.channel | |
---|---|
class |
ChannelOutputStream
ChannelOutputStream |
Methods in com.sun.squawk.io.j2me.channel that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
openOutputStream |
Uses of OutputStream in com.sun.squawk.io.j2me.debug |
---|
Methods in com.sun.squawk.io.j2me.debug that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Returns an output stream for this socket. |
Uses of OutputStream in com.sun.squawk.io.j2me.dserror |
---|
Methods in com.sun.squawk.io.j2me.dserror that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Returns an output stream for this socket. |
Uses of OutputStream in com.sun.squawk.io.j2me.file |
---|
Methods in com.sun.squawk.io.j2me.file that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Open and return an output stream for a connection. |
OutputStream |
Protocol.openOutputStream(long byteOffset)
|
Uses of OutputStream in com.sun.squawk.io.j2me.http |
---|
Methods in com.sun.squawk.io.j2me.http that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
|
Uses of OutputStream in com.sun.squawk.io.j2me.multicastoutput |
---|
Methods in com.sun.squawk.io.j2me.multicastoutput that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Opens and returns an output stream for this connection. |
Uses of OutputStream in com.sun.squawk.io.j2me.socket |
---|
Methods in com.sun.squawk.io.j2me.socket that return OutputStream | |
---|---|
OutputStream |
Protocol.openOutputStream()
Returns an output stream for this socket. |
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 edu.wpi.first.wpilibj.networktables2.stream |
---|
Methods in edu.wpi.first.wpilibj.networktables2.stream that return OutputStream | |
---|---|
OutputStream |
IOStream.getOutputStream()
|
OutputStream |
SimpleIOStream.getOutputStream()
|
OutputStream |
SocketConnectionStream.getOutputStream()
|
Constructors in edu.wpi.first.wpilibj.networktables2.stream with parameters of type OutputStream | |
---|---|
SimpleIOStream(InputStream is,
OutputStream os)
Create a new SimpleIOStream |
Uses of OutputStream in java.io |
---|
Subclasses of OutputStream in java.io | |
---|---|
class |
BufferedOutputStream
|
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 | |
---|---|
BufferedOutputStream(OutputStream out)
|
|
BufferedOutputStream(OutputStream out,
int size)
|
|
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. |
|
" 2013 FRC Java API " |
|||||||||
PREV NEXT | FRAMES NO FRAMES |