Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Uses of Class
java.io.InputStream
Packages that use InputStream
Provides for system input and output through data streams, serialization and the file system.
Provides classes that are fundamental to the design of the Java programming language.
Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.
Provides the classes for implementing XML Catalogs OASIS Standard V1.1, 7 October 2005.
Uses of InputStream in java.io
Subclasses of InputStream in java.io
class
A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the input and to support the mark and reset methods.
class
A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
class
A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
class
A FileInputStream obtains input bytes from a file in a file system.
class
A FilterInputStream contains some other input stream, which it uses as its basic source of data, possibly transforming the data along the way or providing additional functionality.
class
Deprecated. This class incorrectly assumes that bytes adequately represent characters.
class
An ObjectInputStream deserializes primitive data and objects previously written using an ObjectOutputStream.
class
A piped input stream should be connected to a piped output stream; the piped input stream then provides whatever data bytes are written to the piped output stream.
class
A PushbackInputStream adds functionality to another input stream, namely the ability to "push back" or "unread" bytes, by storing pushed-back bytes in an internal buffer.
class
A SequenceInputStream represents the logical concatenation of other input streams.
class
Deprecated. This class does not properly convert characters into bytes.
Fields in java.io declared as InputStream
protected InputStream
FilterInputStream.in
The input stream to be filtered.
Methods in java.io that return InputStream
InputStream.nullInputStream()
Returns a new InputStream that reads no bytes.
Constructors in java.io with parameters of type InputStream
public
Creates a BufferedInputStream and saves its argument, the input stream in, for later use.
public
Creates a BufferedInputStream with the specified buffer size, and saves its argument, the input stream in, for later use.
public
Creates a DataInputStream that uses the specified underlying InputStream.
protected
Creates a FilterInputStream by assigning the argument in to the field this.in so as to remember it for later use.
public
Creates an InputStreamReader that uses the default charset.
public
Creates an InputStreamReader that uses the given charset.
public
Creates an InputStreamReader that uses the given charset decoder.
public
Creates an InputStreamReader that uses the named charset.
public
Constructs a newline number input stream that reads its input from the specified input stream.
public
Creates an ObjectInputStream that reads from the specified InputStream.
public
Creates a PushbackInputStream with a 1-byte pushback buffer, and saves its argument, the input stream in, for later use.
public
Creates a PushbackInputStream with a pushback buffer of the specified size, and saves its argument, the input stream in, for later use.
public
Initializes a newly created SequenceInputStream by remembering the two arguments, which will be read in order, first s1 and then s2, to provide the bytes to be read from this SequenceInputStream.
public
Deprecated. As of JDK version 1.1, the preferred way to tokenize an input stream is to convert it into a character stream, for example:
Constructor parameters in java.io with type arguments of type InputStream
Initializes a newly created SequenceInputStream by remembering the argument, which must be an Enumeration that produces objects whose run-time type is InputStream.
Fields in java.lang declared as InputStream
static final InputStream
System.in
The "standard" input stream.
Methods in java.lang that return InputStream
Finds a resource with a given name.
ClassLoader.getResourceAsStream(String name)
Returns an input stream for reading the specified resource.
Open for reading, a resource of the specified name from the search path used to load classes.
Returns an input stream for reading a resource in this module.
abstract InputStream
Process.getErrorStream()
Returns the input stream connected to the error output of the process.
abstract InputStream
Process.getInputStream()
Returns the input stream connected to the normal output of the process.
Methods in java.lang with parameters of type InputStream
static void
System.setIn(InputStream in)
Reassigns the "standard" input stream.
Methods in java.util that return InputStream
Base64.Decoder.wrap(InputStream is)
Returns an input stream for decoding Base64 encoded byte stream.
Methods in java.util with parameters of type InputStream
Base64.Decoder.wrap(InputStream is)
Returns an input stream for decoding Base64 encoded byte stream.
void
Properties.load(InputStream inStream)
Reads a property list (key and element pairs) from the input byte stream.
void
Properties.loadFromXML(InputStream in)
Loads all of the properties represented by the XML document on the specified input stream into this properties table.
Constructors in java.util with parameters of type InputStream
Creates a property resource bundle from an InputStream.
Constructs a new Scanner that produces values scanned from the specified input stream.
Scanner(InputStream source, Charset charset)
Constructs a new Scanner that produces values scanned from the specified input stream.
Scanner(InputStream source, String charsetName)
Constructs a new Scanner that produces values scanned from the specified input stream.
Methods in javax.xml.catalog that return InputStream
CatalogResolver.resolveEntity(String publicId, String systemId, String baseUri, String namespace)
Implements XMLResolver.

 Use 
PREV   NEXT      All Classes   All Packages
FlexDoc/Javadoc 2.0
Demo Java Doc

Java API documentation generated with FlexDoc/Javadoc 2.0 using JavadocClassic 3.0 template set.
FlexDoc/Javadoc is a template-driven programming tool for rapid development of any Javadoc-based Java API documentation generators (i.e. doclets). If you need to customize your Javadoc without writing a full-blown doclet from scratch, FlexDoc/Javadoc may be the only tool able to help you! Find out more at www.flexdoc.xyz