Package | Description |
---|---|
java.io |
Input/Output support
|
java.net |
Network communication through TCP and UDP sockets or URLs.
|
java.util |
Utilities
|
tijos.framework.appcenter |
Application center class
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedOutputStream
This class accumulates bytes written in a buffer instead of immediately
writing the data to the underlying output sink.
|
class |
ByteArrayOutputStream
This class allows data to be written to a byte array buffer and
and then retrieved by an application.
|
class |
DataOutputStream
A data output stream lets an application write primitive Java data
types to an output stream in a portable way.
|
class |
FileOutputStream
Writes a stream of bytes to a file.
|
class |
FilterOutputStream
This class is the common superclass of output stream classes that
filter the output they write.
|
class |
PipedOutputStream
This class writes its bytes to a
PipedInputStream to
which it is connected. |
class |
PrintStream
This class prints Java primitive values and object to a stream as
text.
|
Modifier and Type | Method and Description |
---|---|
void |
ByteArrayOutputStream.writeTo(OutputStream out)
This method writes all the bytes that have been written to this stream
from the internal buffer to the specified
OutputStream . |
Constructor and Description |
---|
BufferedOutputStream(OutputStream out)
This method initializes a new
BufferedOutputStream instance
that will write to the specified subordinate OutputStream
and which will use a default buffer size of 512 bytes. |
BufferedOutputStream(OutputStream out,
int size)
This method initializes a new
BufferedOutputStream instance
that will write to the specified subordinate OutputStream
and which will use the specified buffer size |
DataOutputStream(OutputStream out)
Creates a new data output stream to write data to the specified
underlying output stream.
|
FilterOutputStream(OutputStream out)
This method initializes an instance of
FilterOutputStream
to write to the specified subordinate OutputStream . |
OutputStreamWriter(OutputStream os) |
OutputStreamWriter(OutputStream os,
String charset) |
PrintStream(OutputStream out)
This method initializes a new
PrintStream object to write
to the specified output sink. |
PrintStream(OutputStream out,
boolean auto_flush)
This method initializes a new
PrintStream object to write
to the specified output sink. |
PrintWriter(OutputStream out)
This method initializes a new
PrintWriter object to write
to the specified OutputStream . |
PrintWriter(OutputStream out,
boolean autoflush)
This method initializes a new
PrintWriter object to write
to the specified OutputStream . |
Modifier and Type | Method and Description |
---|---|
OutputStream |
Socket.getOutputStream()
Returns an OutputStream for writing to this socket.
|
Modifier and Type | Method and Description |
---|---|
void |
Properties.save(OutputStream out,
String header)
Deprecated.
use
Properties.store(OutputStream, String) instead |
void |
Properties.store(OutputStream out,
String header)
Writes the key/value pairs to the given output stream, in a format
suitable for
load .If header is not null, this method writes a comment containing the header as first line to the stream. |
Constructor and Description |
---|
Formatter(OutputStream out)
Constructs a new
Formatter using the default
locale and character set, with the specified output stream. |
Formatter(OutputStream out,
String charset)
Constructs a new
Formatter using the default
locale, with the specified file output stream and the
supplied character set. |
Formatter(OutputStream out,
String charset,
Locale loc)
Constructs a new
Formatter using the specified
output stream with the supplied character set and locale. |
Modifier and Type | Method and Description |
---|---|
OutputStream |
TiAPPManager.create(int fid,
int size)
Create a new APP and return the OutputStream
|