Package | Description |
---|---|
com.ewon.ewonitf | |
java.io | |
java.lang | |
java.net | |
java.security | |
java.security.cert | |
java.sql | |
java.util | |
java.util.jar | |
java.util.zip | |
javax.security.auth.x500 |
Modifier and Type | Class and Description |
---|---|
class |
Exporter
This class implements an intput stream with data provided from an export block descriptor.
|
Modifier and Type | Class and Description |
---|---|
class |
BufferedInputStream
BufferedInputStream is a class which takes an input stream and
buffers the input. |
class |
ByteArrayInputStream |
class |
DataInputStream |
class |
FileInputStream |
class |
FilterInputStream |
class |
LineNumberInputStream |
class |
ObjectInputStream
TODO:
- optimize, optimize and then more optimizations ...
|
class |
PipedInputStream |
class |
PushbackInputStream |
class |
SequenceInputStream |
class |
StringBufferInputStream
Deprecated.
|
Modifier and Type | Field and Description |
---|---|
protected InputStream |
FilterInputStream.in |
Constructor and Description |
---|
BufferedInputStream(InputStream in)
Constructs a new
BufferedInputStream on the InputStream
in . |
BufferedInputStream(InputStream in,
int size)
Constructs a new BufferedInputStream on the InputStream
in . |
DataInputStream(InputStream input) |
FilterInputStream(InputStream input) |
InputStreamReader(InputStream bytestream) |
InputStreamReader(InputStream bytestream,
String enc) |
LineNumberInputStream(InputStream in) |
ObjectInputStream(InputStream in) |
PushbackInputStream(InputStream in) |
PushbackInputStream(InputStream in,
int size) |
SequenceInputStream(InputStream s1,
InputStream s2) |
StreamTokenizer(InputStream is)
Deprecated.
Use StreamTokenizer(Reader)
|
Modifier and Type | Field and Description |
---|---|
static InputStream |
System.in |
Modifier and Type | Method and Description |
---|---|
abstract InputStream |
Process.getErrorStream() |
abstract InputStream |
Process.getInputStream() |
InputStream |
Runtime.getLocalizedInputStream(InputStream in)
Deprecated.
|
InputStream |
Class.getResourceAsStream(String name)
Find the resource with a given name, using the namespace of this Class.
|
InputStream |
ClassLoader.getResourceAsStream(String resname)
Get a resource in the form of an InputStream.
|
static InputStream |
ClassLoader.getSystemResourceAsStream(String resname)
Get a system resource in the form of an InputStream.
|
Modifier and Type | Method and Description |
---|---|
InputStream |
Runtime.getLocalizedInputStream(InputStream in)
Deprecated.
|
static void |
System.setIn(InputStream newIn) |
Modifier and Type | Method and Description |
---|---|
InputStream |
HttpURLConnection.getErrorStream()
Returns an input stream from the server in the case of an error such as
the requested file has not been found on the remote server.
|
InputStream |
Socket.getInputStream() |
protected abstract InputStream |
SocketImpl.getInputStream() |
InputStream |
URLConnection.getInputStream()
Gets an
InputStream for reading data from the resource pointed by
this URLConnection . |
InputStream |
URL.openStream()
Opens an InputStream to read the resource referred by this URL.
|
Modifier and Type | Method and Description |
---|---|
static String |
URLConnection.guessContentTypeFromStream(InputStream is)
Determines the MIME-type of the resource represented by the input stream
is by reading its first few characters. |
Modifier and Type | Class and Description |
---|---|
class |
DigestInputStream |
Modifier and Type | Method and Description |
---|---|
void |
Certificate.decode(InputStream in)
Deprecated.
|
abstract void |
KeyStoreSpi.engineLoad(InputStream stream,
char[] password) |
void |
Provider.load(InputStream inStream) |
void |
KeyStore.load(InputStream stream,
char[] password) |
Constructor and Description |
---|
DigestInputStream(InputStream stream,
MessageDigest digest) |
Modifier and Type | Method and Description |
---|---|
abstract Certificate |
CertificateFactorySpi.engineGenerateCertificate(InputStream inStream) |
abstract Collection |
CertificateFactorySpi.engineGenerateCertificates(InputStream inStream) |
CertPath |
CertificateFactorySpi.engineGenerateCertPath(InputStream stream) |
CertPath |
CertificateFactorySpi.engineGenerateCertPath(InputStream inStream,
String encoding) |
abstract CRL |
CertificateFactorySpi.engineGenerateCRL(InputStream inStream) |
abstract Collection |
CertificateFactorySpi.engineGenerateCRLs(InputStream inStream) |
Certificate |
CertificateFactory.generateCertificate(InputStream in) |
Collection |
CertificateFactory.generateCertificates(InputStream in) |
CertPath |
CertificateFactory.generateCertPath(InputStream stream) |
CertPath |
CertificateFactory.generateCertPath(InputStream inStream,
String encoding) |
CRL |
CertificateFactory.generateCRL(InputStream in) |
Collection |
CertificateFactory.generateCRLs(InputStream in) |
Modifier and Type | Method and Description |
---|---|
InputStream |
Clob.getAsciiStream() |
InputStream |
ResultSet.getAsciiStream(int columnIndex) |
InputStream |
ResultSet.getAsciiStream(String columnName) |
InputStream |
Blob.getBinaryStream() |
InputStream |
ResultSet.getBinaryStream(int columnIndex) |
InputStream |
ResultSet.getBinaryStream(String columnName) |
InputStream |
ResultSet.getUnicodeStream(int columnIndex) |
InputStream |
ResultSet.getUnicodeStream(String columnName) |
InputStream |
SQLInput.readAsciiStream() |
InputStream |
SQLInput.readBinaryStream() |
Modifier and Type | Method and Description |
---|---|
void |
PreparedStatement.setAsciiStream(int parameterIndex,
InputStream x,
int length) |
void |
PreparedStatement.setBinaryStream(int parameterIndex,
InputStream x,
int length) |
void |
PreparedStatement.setUnicodeStream(int parameterIndex,
InputStream x,
int length) |
void |
ResultSet.updateAsciiStream(int columnIndex,
InputStream x,
int length) |
void |
ResultSet.updateAsciiStream(String columnName,
InputStream x,
int length) |
void |
ResultSet.updateBinaryStream(int columnIndex,
InputStream x,
int length) |
void |
ResultSet.updateBinaryStream(String columnName,
InputStream x,
int length) |
void |
SQLOutput.writeAsciiStream(InputStream x) |
void |
SQLOutput.writeBinaryStream(InputStream x) |
Modifier and Type | Method and Description |
---|---|
void |
Properties.load(InputStream in)
Load from an input stream.
|
Constructor and Description |
---|
PropertyResourceBundle(InputStream in) |
Modifier and Type | Class and Description |
---|---|
class |
JarInputStream |
Modifier and Type | Method and Description |
---|---|
InputStream |
JarFile.getInputStream(ZipEntry ze)
Return an InputStream for reading the decompressed contents of ze.
|
Modifier and Type | Method and Description |
---|---|
void |
Manifest.read(InputStream is)
Constructs a new Manifest instance obtaining Attribute information from
the parameter InputStream.
|
Constructor and Description |
---|
JarInputStream(InputStream stream) |
JarInputStream(InputStream stream,
boolean verify)
Constructs a new JarInputStream from stream
|
Manifest(InputStream is)
Constructs a new Manifest instance using the attributes obtained from is.
|
Modifier and Type | Class and Description |
---|---|
class |
CheckedInputStream |
class |
GZIPInputStream |
class |
InflaterInputStream
This class provides an implementation of
FilterInputStream that
uncompresses data that was compressed using the DEFLATE algorithm
(see specification). |
class |
ZipInputStream
Basic InputStream for reading zip formatted streams.
|
Modifier and Type | Method and Description |
---|---|
InputStream |
ZipFile.getInputStream(ZipEntry ze) |
Constructor and Description |
---|
CheckedInputStream(InputStream in,
Checksum cs) |
GZIPInputStream(InputStream instr) |
GZIPInputStream(InputStream instr,
int readsize) |
InflaterInputStream(InputStream is)
This is the most basic constructor.
|
InflaterInputStream(InputStream is,
Inflater inf)
This constructor lets you pass a specifically initialized Inflater,
for example one that expects no ZLIB header.
|
InflaterInputStream(InputStream is,
Inflater inf,
int bsize)
This constructor lets you specify both the
Inflater as well as
the internal buffer size to be used. |
ZipInputStream(InputStream in) |
Constructor and Description |
---|
X500Principal(InputStream encoded) |