Uses of Class
java.io.InputStream
-
Uses of InputStream in com.squareup.okhttp
Methods in com.squareup.okhttp that return InputStream Modifier and Type Method Description abstract InputStreamResponse.Body. byteStream() -
Uses of InputStream in com.squareup.okhttp.internal
Methods in com.squareup.okhttp.internal that return InputStream Modifier and Type Method Description InputStreamDiskLruCache.Snapshot. getInputStream(int index)Returns the unbuffered stream with the value forindex.InputStreamDiskLruCache.Editor. newInputStream(int index)Returns an unbuffered input stream to read the last committed value, or null if no value has been committed.Methods in com.squareup.okhttp.internal with parameters of type InputStream Modifier and Type Method Description static intUtil. copy(InputStream in, OutputStream out)Copies all of the bytes fromintoout.static StringUtil. readAsciiLine(InputStream in)Returns the ASCII characters up to but not including the next "\r\n", or "\n".static voidUtil. readFully(InputStream in, byte[] dst)Fills 'dst' with bytes from 'in', throwing EOFException if insufficient bytes are available.static voidUtil. readFully(InputStream in, byte[] dst, int offset, int byteCount)Reads exactly 'byteCount' bytes from 'in' (into 'dst' at offset 'offset'), and throws EOFException if insufficient bytes are available.static intUtil. readSingleByte(InputStream in)Implements InputStream.read(int) in terms of InputStream.read(byte[], int, int).static voidUtil. skipAll(InputStream in)static longUtil. skipByReading(InputStream in, long byteCount)Callin.read()repeatedly until either the stream is exhausted orbyteCountbytes have been read.Constructors in com.squareup.okhttp.internal with parameters of type InputStream Constructor Description StrictLineReader(InputStream in, int capacity, Charset charset)Constructs a newLineReaderwith the specified capacity and charset.StrictLineReader(InputStream in, Charset charset)Constructs a newLineReaderwith the specified charset and the default capacity. -
Uses of InputStream in com.squareup.okhttp.internal.http
Methods in com.squareup.okhttp.internal.http that return InputStream Modifier and Type Method Description InputStreamHttpsURLConnectionImpl. getErrorStream()InputStreamHttpURLConnectionImpl. getErrorStream()Returns an input stream from the server in the case of error such as the requested file (txt, htm, html) is not found on the remote server.InputStreamHttpsURLConnectionImpl. getInputStream()InputStreamHttpURLConnectionImpl. getInputStream()InputStreamHttpEngine. getResponseBody()InputStreamHttpTransport. getTransferStream(CacheRequest cacheRequest)InputStreamSpdyTransport. getTransferStream(CacheRequest cacheRequest)Methods in com.squareup.okhttp.internal.http with parameters of type InputStream Modifier and Type Method Description static RawHeadersRawHeaders. fromBytes(InputStream in)Parses bytes of a response header from an HTTP transport.booleanHttpTransport. makeReusable(boolean streamCancelled, OutputStream requestBodyOut, InputStream responseBodyIn)booleanSpdyTransport. makeReusable(boolean streamCancelled, OutputStream requestBodyOut, InputStream responseBodyIn)static voidRawHeaders. readHeaders(InputStream in, RawHeaders out)Reads headers or trailers intoout.Constructors in com.squareup.okhttp.internal.http with parameters of type InputStream Constructor Description HttpTransport(HttpEngine httpEngine, OutputStream outputStream, InputStream inputStream) -
Uses of InputStream in com.squareup.okhttp.internal.spdy
Methods in com.squareup.okhttp.internal.spdy that return InputStream Modifier and Type Method Description InputStreamSpdyStream. getInputStream()Returns an input stream that can be used to read data from the peer.Constructors in com.squareup.okhttp.internal.spdy with parameters of type InputStream Constructor Description Builder(boolean client, InputStream in, OutputStream out)Builder(String hostName, boolean client, InputStream in, OutputStream out) -
Uses of InputStream in java.io
Subclasses of InputStream in java.io Modifier and Type Class Description classBufferedInputStreamWraps an existingInputStreamand buffers the input.classByteArrayInputStreamA specializedInputStreamfor reading the contents of a byte array.classDataInputStreamWraps an existingInputStreamand reads big-endian typed data from it.classFileInputStreamAn input stream that reads bytes from a file.classFilterInputStreamWraps an existingInputStreamand performs some transformation on the input data while it is being read.classLineNumberInputStreamDeprecated.classObjectInputStreamA specializedInputStreamthat is able to read (deserialize) Java objects as well as primitive data types (int, byte, char etc.).classPipedInputStreamReceives information from a communications pipe.classPushbackInputStreamWraps an existingInputStreamand adds functionality to "push back" bytes that have been read, so that they can be read again.classSequenceInputStreamConcatenates two or more existingInputStreams.classStringBufferInputStreamDeprecated.UseStringReaderinstead.Fields in java.io declared as InputStream Modifier and Type Field Description protected InputStreamFilterInputStream. inThe source input stream that is filtered.Constructors in java.io with parameters of type InputStream Constructor Description BufferedInputStream(InputStream in)Constructs a newBufferedInputStream, providinginwith a buffer of 8192 bytes.BufferedInputStream(InputStream in, int size)Constructs a newBufferedInputStream, providinginwithsizebytes of buffer.DataInputStream(InputStream in)Constructs a new DataInputStream on the InputStreamin.FilterInputStream(InputStream in)Constructs a newFilterInputStreamwith the specified input stream as source.InputStreamReader(InputStream in)InputStreamReader(InputStream in, String charsetName)Constructs a new InputStreamReader on the InputStreamin.InputStreamReader(InputStream in, Charset charset)Constructs a new InputStreamReader on the InputStreaminand Charsetcharset.InputStreamReader(InputStream in, CharsetDecoder dec)Constructs a new InputStreamReader on the InputStreaminand CharsetDecoderdec.LineNumberInputStream(InputStream in)Deprecated.ObjectInputStream(InputStream input)Constructs a new ObjectInputStream that reads from the InputStreaminput.PushbackInputStream(InputStream in)Constructs a newPushbackInputStreamwith the specified input stream as source.PushbackInputStream(InputStream in, int size)Constructs a newPushbackInputStreamwithinas source input stream.SequenceInputStream(InputStream s1, InputStream s2)Constructs a newSequenceInputStreamusing the two streamss1ands2as the sequence of streams to read from.StreamTokenizer(InputStream is)Deprecated.UseStreamTokenizer(Reader)instead.Constructor parameters in java.io with type arguments of type InputStream Constructor Description SequenceInputStream(Enumeration<? extends InputStream> e)Constructs a new SequenceInputStream using the elements returned from Enumerationeas the stream sequence. -
Uses of InputStream in java.lang
Fields in java.lang declared as InputStream Modifier and Type Field Description static InputStreamSystem. inDefault input stream.Methods in java.lang that return InputStream Modifier and Type Method Description abstract InputStreamProcess. getErrorStream()Returns an input stream that is connected to the error stream (stderr) of the native process represented by this object.abstract InputStreamProcess. getInputStream()Returns an input stream that is connected to the standard output stream (stdout) of the native process represented by this object.InputStreamRuntime. getLocalizedInputStream(InputStream stream)Deprecated.UseInputStreamReaderinstead.InputStreamClass. getResourceAsStream(String resourceName)Returns a read-only stream for the contents of the given resource, or null if the resource is not found.InputStreamClassLoader. getResourceAsStream(String resName)Returns a stream for the resource with the specified name.static InputStreamClassLoader. getSystemResourceAsStream(String resName)Returns a stream for the resource with the specified name.Methods in java.lang with parameters of type InputStream Modifier and Type Method Description InputStreamRuntime. getLocalizedInputStream(InputStream stream)Deprecated.UseInputStreamReaderinstead.static voidSystem. setIn(InputStream newIn)Sets the standard input stream to the given user defined input stream. -
Uses of InputStream in java.net
Methods in java.net that return InputStream Modifier and Type Method Description abstract InputStreamCacheResponse. getBody()Returns anInputStreamto access the response body.InputStreamHttpURLConnection. 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.protected InputStreamPlainSocketImpl. getInputStream()InputStreamSocket. getInputStream()Returns an input stream to read data from this socket.protected abstract InputStreamSocketImpl. getInputStream()Gets the input stream of this socket.InputStreamURLConnection. getInputStream()Returns anInputStreamfor reading data from the resource pointed by thisURLConnection.InputStreamURL. openStream()Equivalent toopenConnection().getInputStream(types).Methods in java.net with parameters of type InputStream Modifier and Type Method Description static StringURLConnection. guessContentTypeFromStream(InputStream is)Determines the MIME-type of the resource represented by the input streamisby reading its first few characters. -
Uses of InputStream in java.nio.channels
Methods in java.nio.channels that return InputStream Modifier and Type Method Description static InputStreamChannels. newInputStream(ReadableByteChannel channel)Returns an input stream on the given channel.Methods in java.nio.channels with parameters of type InputStream Modifier and Type Method Description static ReadableByteChannelChannels. newChannel(InputStream inputStream)Returns a readable channel on the given input stream. -
Uses of InputStream in java.security
Subclasses of InputStream in java.security Modifier and Type Class Description classDigestInputStreamDigestInputStreamis aFilterInputStreamwhich maintains an associated message digest.Methods in java.security with parameters of type InputStream Modifier and Type Method Description voidCertificate. decode(InputStream stream)Deprecated.Decodes a certificate from the givenInputStream.abstract voidKeyStoreSpi. engineLoad(InputStream stream, char[] password)Loads thisKeyStoreSpifrom the givenInputStream.voidKeyStore. load(InputStream stream, char[] password)Initializes thisKeyStorefrom the providedInputStream.voidProvider. load(InputStream inStream)Constructors in java.security with parameters of type InputStream Constructor Description DigestInputStream(InputStream stream, MessageDigest digest)Constructs a new instance of thisDigestInputStream, using the givenstreamand thedigest. -
Uses of InputStream in java.security.cert
Methods in java.security.cert with parameters of type InputStream Modifier and Type Method Description abstract CertificateCertificateFactorySpi. engineGenerateCertificate(InputStream inStream)Generates and initializes aCertificatefrom the provided input stream.abstract Collection<? extends Certificate>CertificateFactorySpi. engineGenerateCertificates(InputStream inStream)Generates and initializes a collection of certificates from the provided input stream.CertPathCertificateFactorySpi. engineGenerateCertPath(InputStream inStream)Generates aCertPathfrom the providedInputStream.CertPathCertificateFactorySpi. engineGenerateCertPath(InputStream inStream, String encoding)Generates aCertPath(a certificate chain) from the giveninputStream, assuming the givenencodingfromCertificateFactorySpi.engineGetCertPathEncodings().abstract CRLCertificateFactorySpi. engineGenerateCRL(InputStream inStream)Generates and initializes a Certificate Revocation List (CRL) from the provided input stream.abstract Collection<? extends CRL>CertificateFactorySpi. engineGenerateCRLs(InputStream inStream)Generates and initializes a collection of Certificate Revocation List (CRL) from the provided input stream.CertificateCertificateFactory. generateCertificate(InputStream inStream)Generates and initializes aCertificatefrom the provided input stream.Collection<? extends Certificate>CertificateFactory. generateCertificates(InputStream inStream)Generates and initializes a collection of (unrelated) certificates from the provided input stream.CertPathCertificateFactory. generateCertPath(InputStream inStream)Generates aCertPath(a certificate chain) from the providedInputStream.CertPathCertificateFactory. generateCertPath(InputStream inputStream, String encoding)Generates aCertPath(a certificate chain) from the giveninputStream, assuming the givenencodingfromCertificateFactory.getCertPathEncodings().CRLCertificateFactory. generateCRL(InputStream inStream)Generates and initializes a Certificate Revocation List (CRL) from the provided input stream.Collection<? extends CRL>CertificateFactory. generateCRLs(InputStream inStream)Generates and initializes a collection of Certificate Revocation List (CRL) from the provided input stream. -
Uses of InputStream in java.sql
Methods in java.sql that return InputStream Modifier and Type Method Description InputStreamClob. getAsciiStream()Gets the value of thisClobobject as an ASCII stream.InputStreamResultSet. getAsciiStream(int columnIndex)Gets the value of a column specified by column index as an ASCII character stream.InputStreamResultSet. getAsciiStream(String columnName)Gets the value of a column specified by column name as an ASCII character stream.InputStreamBlob. getBinaryStream()Retrieves thisBlobobject as a binary stream.InputStreamBlob. getBinaryStream(long pos, long length)Retrieveslengthbytes from thisBlob, starting at 1-based offsetpos, and returns them as a binary stream.InputStreamResultSet. getBinaryStream(int columnIndex)Gets the value of a column specified by column index as a binary stream.InputStreamResultSet. getBinaryStream(String columnName)Gets the value of a column specified by column name as a binary stream.InputStreamSQLXML. getBinaryStream()Returns a stream that can be used to read binary data from this SQLXMLobject.InputStreamResultSet. getUnicodeStream(int columnIndex)Deprecated.UseResultSet.getCharacterStream(int)instead.InputStreamResultSet. getUnicodeStream(String columnName)Deprecated.UseResultSet.getCharacterStream(int)instead.InputStreamSQLInput. readAsciiStream()Returns the next attribute in the stream in the form of an ASCII character stream embodied as ajava.io.InputStream.InputStreamSQLInput. readBinaryStream()Returns the next attribute in the stream in the form of a stream of bytes embodied as ajava.io.InputStream.Methods in java.sql with parameters of type InputStream Modifier and Type Method Description voidCallableStatement. setAsciiStream(String parameterName, InputStream x)Sets the named parameter to the bytes from the givenreader.voidCallableStatement. setAsciiStream(String parameterName, InputStream theInputStream, int length)Sets the value of a specified parameter to the content of a suppliedInputStream, which has a specified number of bytes.voidCallableStatement. setAsciiStream(String parameterName, InputStream x, long length)Sets the named parameter to the nextlengthbytes from the giveninputStream.voidPreparedStatement. setAsciiStream(int parameterIndex, InputStream inputStream)Sets the value of the specified parameter to the bytes frominputStream.voidPreparedStatement. setAsciiStream(int parameterIndex, InputStream theInputStream, int length)Sets the value of a specified parameter to the content of a suppliedInputStream, which has a specified number of bytes.voidPreparedStatement. setAsciiStream(int parameterIndex, InputStream inputStream, long length)Sets the value of the specified parameter to the nextlengthbytes frominputStream.voidCallableStatement. setBinaryStream(String parameterName, InputStream x)Sets the named parameter to the bytes from the givenreader.voidCallableStatement. setBinaryStream(String parameterName, InputStream theInputStream, int length)Sets the value of a specified parameter to the content of a supplied binaryInputStream, which has a specified number of bytes.voidCallableStatement. setBinaryStream(String parameterName, InputStream x, long length)Sets the named parameter to the nextlengthbytes from the giveninputStream.voidPreparedStatement. setBinaryStream(int parameterIndex, InputStream inputStream)Sets the value of the specified parameter to the bytes frominputStream.voidPreparedStatement. setBinaryStream(int parameterIndex, InputStream theInputStream, int length)Sets the value of a specified parameter to the content of a supplied binaryInputStream, which has a specified number of bytes.voidPreparedStatement. setBinaryStream(int parameterIndex, InputStream inputStream, long length)Sets the value of the specified parameter to the nextlengthbytes frominputStream.voidCallableStatement. setBlob(String parameterName, InputStream inputStream)Sets the named parameter to the bytes from the giveninputStream.voidCallableStatement. setBlob(String parameterName, InputStream inputStream, long length)Sets the named parameter to the nextlengthbytes from the giveninputStream.voidPreparedStatement. setBlob(int parameterIndex, InputStream inputStream)Sets the value of the specified parameter to the bytes frominputStream.voidPreparedStatement. setBlob(int parameterIndex, InputStream inputStream, long length)Sets the value of the specified parameter to the nextlengthbytes frominputStream.voidPreparedStatement. setUnicodeStream(int parameterIndex, InputStream theInputStream, int length)Deprecated.voidResultSet. updateAsciiStream(int columnIndex, InputStream x)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateAsciiStream(int columnIndex, InputStream x, int length)Updates a column specified by a column index with an ASCII stream value.voidResultSet. updateAsciiStream(int columnIndex, InputStream x, long length)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateAsciiStream(String columnLabel, InputStream x)Updates the value in the named column.voidResultSet. updateAsciiStream(String columnName, InputStream x, int length)Updates a column specified by a column name with an Ascii stream value.voidResultSet. updateAsciiStream(String columnLabel, InputStream x, long length)Updates the value in the named column.voidResultSet. updateBinaryStream(int columnIndex, InputStream x)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateBinaryStream(int columnIndex, InputStream x, int length)Updates a column specified by a column index with a binary stream value.voidResultSet. updateBinaryStream(int columnIndex, InputStream x, long length)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateBinaryStream(String columnLabel, InputStream x)Updates the value in the named column.voidResultSet. updateBinaryStream(String columnName, InputStream x, int length)Updates a column specified by a column name with a binary stream value.voidResultSet. updateBinaryStream(String columnLabel, InputStream x, long length)Updates the value in the named column.voidResultSet. updateBlob(int columnIndex, InputStream inputStream)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateBlob(int columnIndex, InputStream inputStream, long length)Updates the value at the 1-basedcolumnIndex.voidResultSet. updateBlob(String columnLabel, InputStream inputStream)Updates the value in the named column.voidResultSet. updateBlob(String columnLabel, InputStream inputStream, long length)Updates the value in the named column.voidSQLOutput. writeAsciiStream(InputStream theStream)Write a stream of ASCII characters into the output stream.voidSQLOutput. writeBinaryStream(InputStream theStream)Write a stream of uninterpreted bytes into the output stream. -
Uses of InputStream in java.util
Methods in java.util with parameters of type InputStream Modifier and Type Method Description voidProperties. load(InputStream in)Loads properties from the specifiedInputStream, assumed to be ISO-8859-1.voidProperties. loadFromXML(InputStream in)Loads the properties from anInputStreamcontaining the properties in XML form.Constructors in java.util with parameters of type InputStream Constructor Description PropertyResourceBundle(InputStream stream)Constructs a new instance ofPropertyResourceBundleand loads the properties file from the specifiedInputStream.Scanner(InputStream src)Creates aScanneron the specifiedInputStream.Scanner(InputStream src, String charsetName)Creates aScanneron the specifiedInputStream. -
Uses of InputStream in java.util.jar
Subclasses of InputStream in java.util.jar Modifier and Type Class Description classJarInputStreamThe input stream from which the JAR file to be read may be fetched.Methods in java.util.jar that return InputStream Modifier and Type Method Description InputStreamJarFile. getInputStream(ZipEntry ze)Return anInputStreamfor reading the decompressed contents of ZIP entry.Methods in java.util.jar with parameters of type InputStream Modifier and Type Method Description voidManifest. read(InputStream is)Merges name/attribute pairs read from the input streamisinto this manifest.voidPack200.Unpacker. unpack(InputStream in, JarOutputStream out)Unpack the specified stream to the specified JAR output stream.Constructors in java.util.jar with parameters of type InputStream Constructor Description JarInputStream(InputStream stream)Constructs a newJarInputStreamfrom an input stream.JarInputStream(InputStream stream, boolean verify)Constructs a newJarInputStreamfrom an input stream.Manifest(InputStream is)Creates a newManifestinstance using the attributes obtained from the input stream. -
Uses of InputStream in java.util.logging
Methods in java.util.logging with parameters of type InputStream Modifier and Type Method Description voidLogManager. readConfiguration(InputStream ins)Re-initialize the properties and configuration from the givenInputStream -
Uses of InputStream in java.util.prefs
Methods in java.util.prefs with parameters of type InputStream Modifier and Type Method Description static voidPreferences. importPreferences(InputStream istream)Imports all the preferences from an XML document using the given input stream. -
Uses of InputStream in java.util.zip
Subclasses of InputStream in java.util.zip Modifier and Type Class Description classCheckedInputStreamTheCheckedInputStreamclass is used to maintain a checksum at the same time as the data, on which the checksum is computed, is read from a stream.classDeflaterInputStreamAnInputStreamfilter to compress data.classGZIPInputStreamTheGZIPInputStreamclass is used to read data stored in the GZIP format, reading and decompressing GZIP data from the underlying stream into its buffer.classInflaterInputStreamThis class provides an implementation ofFilterInputStreamthat decompresses data that was compressed using the DEFLATE algorithm (see specification).classZipInputStreamUsed to read (decompress) the data from zip files.Methods in java.util.zip that return InputStream Modifier and Type Method Description InputStreamZipFile. getInputStream(ZipEntry entry)Returns an input stream on the data of the specifiedZipEntry.Constructors in java.util.zip with parameters of type InputStream Constructor Description CheckedInputStream(InputStream is, Checksum csum)Constructs a newCheckedInputStreamonInputStreamis.DeflaterInputStream(InputStream in)Constructs aDeflaterInputStreamwith a newDeflaterand an implementation-defined default internal buffer size.DeflaterInputStream(InputStream in, Deflater deflater)Constructs aDeflaterInputStreamwith the givenDeflaterand an implementation-defined default internal buffer size.DeflaterInputStream(InputStream in, Deflater deflater, int bufferSize)Constructs aDeflaterInputStreamwith the givenDeflaterand given internal buffer size.GZIPInputStream(InputStream is)Construct aGZIPInputStreamto read from GZIP data from the underlying stream.GZIPInputStream(InputStream is, int size)Construct aGZIPInputStreamto read from GZIP data from the underlying stream.InflaterInputStream(InputStream is)This is the most basic constructor.InflaterInputStream(InputStream is, Inflater inflater)This constructor lets you pass a specifically initialized Inflater, for example one that expects no ZLIB header.InflaterInputStream(InputStream is, Inflater inflater, int bufferSize)This constructor lets you specify both theInflateras well as the internal buffer size to be used.ZipInputStream(InputStream stream)Constructs a newZipInputStreamto read zip entries from the given input stream. -
Uses of InputStream in javax.crypto
Subclasses of InputStream in javax.crypto Modifier and Type Class Description classCipherInputStreamThis class wraps anInputStreamand a cipher so thatread()methods return data that are read from the underlyingInputStreamand processed by the cipher.Constructors in javax.crypto with parameters of type InputStream Constructor Description CipherInputStream(InputStream is)Creates a newCipherInputStreaminstance for anInputStreamwithout a cipher.CipherInputStream(InputStream is, Cipher c)Creates a newCipherInputStreaminstance for anInputStreamand a cipher. -
Uses of InputStream in javax.security.auth.x500
Constructors in javax.security.auth.x500 with parameters of type InputStream Constructor Description X500Principal(InputStream in)Creates a new X500Principal from a given ASN.1 DER encoding of a distinguished name. -
Uses of InputStream in javax.security.cert
Methods in javax.security.cert with parameters of type InputStream Modifier and Type Method Description static X509CertificateX509Certificate. getInstance(InputStream inStream)Creates a newX509Certificateand initializes it from the specified input stream. -
Uses of InputStream in javax.sql
Methods in javax.sql with parameters of type InputStream Modifier and Type Method Description voidRowSet. setAsciiStream(int parameterIndex, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the ASCII data in the supplied java.io.InputStream value.voidRowSet. setAsciiStream(int parameterIndex, InputStream theInputStream, int length)Sets the value of the specified parameter in theRowSetcommand with the ASCII data in the suppliedjava.io.InputStreamvalue.voidRowSet. setAsciiStream(String parameterName, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the ASCII data in the supplied java.io.InputStream value.voidRowSet. setAsciiStream(String parameterName, InputStream theInputStream, int length)Sets the value of the specified parameter in the RowSet command with the ASCII data in the supplied java.io.InputStream value.voidRowSet. setBinaryStream(int parameterIndex, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the binary data in the supplied java.io.InputStream value.voidRowSet. setBinaryStream(int parameterIndex, InputStream theInputStream, int length)Sets the value of the specified parameter in theRowSetcommand to the binary data in the supplied input stream.voidRowSet. setBinaryStream(String parameterName, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the binary data in the supplied java.io.InputStream value.voidRowSet. setBinaryStream(String parameterName, InputStream theInputStream, int length)Sets the value of the specified parameter in the RowSet command with the binary data in the supplied java.io.InputStream value.voidRowSet. setBlob(int parameterIndex, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the value of a supplied java.io.InputStream.voidRowSet. setBlob(int parameterIndex, InputStream theInputStream, long length)Sets the value of the specified parameter in the RowSet command with the value of a supplied java.io.InputStream.voidRowSet. setBlob(String parameterName, InputStream theInputStream)Sets the value of the specified parameter in the RowSet command with the value of a supplied java.io.InputStream.voidRowSet. setBlob(String parameterName, InputStream theInputStream, long length)Sets the value of the specified parameter in the RowSet command with the value of a supplied java.io.InputStream. -
Uses of InputStream in javax.xml.parsers
Methods in javax.xml.parsers with parameters of type InputStream Modifier and Type Method Description DocumentDocumentBuilder. parse(InputStream is)Parse the content of the givenInputStreamas an XML document and return a new DOMDocumentobject.DocumentDocumentBuilder. parse(InputStream is, String systemId)Parse the content of the givenInputStreamas an XML document and return a new DOMDocumentobject.voidSAXParser. parse(InputStream is, HandlerBase hb)Parse the content of the givenInputStreaminstance as XML using the specifiedHandlerBase.voidSAXParser. parse(InputStream is, HandlerBase hb, String systemId)Parse the content of the givenInputStreaminstance as XML using the specifiedHandlerBase.voidSAXParser. parse(InputStream is, DefaultHandler dh)Parse the content of the givenInputStreaminstance as XML using the specifiedDefaultHandler.voidSAXParser. parse(InputStream is, DefaultHandler dh, String systemId)Parse the content of the givenInputStreaminstance as XML using the specifiedDefaultHandler. -
Uses of InputStream in javax.xml.transform.stream
Methods in javax.xml.transform.stream that return InputStream Modifier and Type Method Description InputStreamStreamSource. getInputStream()Get the byte stream that was set with setByteStream.Methods in javax.xml.transform.stream with parameters of type InputStream Modifier and Type Method Description voidStreamSource. setInputStream(InputStream inputStream)Set the byte stream to be used as input.Constructors in javax.xml.transform.stream with parameters of type InputStream Constructor Description StreamSource(InputStream inputStream)Construct a StreamSource from a byte stream.StreamSource(InputStream inputStream, String systemId)Construct a StreamSource from a byte stream. -
Uses of InputStream in libcore.io
Methods in libcore.io with parameters of type InputStream Modifier and Type Method Description static intStreams. copy(InputStream in, OutputStream out)Copies all of the bytes fromintoout.static StringStreams. readAsciiLine(InputStream in)Returns the ASCII characters up to but not including the next "\r\n", or "\n".static byte[]Streams. readFully(InputStream in)Returns a byte[] containing the remainder of 'in', closing it when done.static voidStreams. readFully(InputStream in, byte[] dst)Fills 'dst' with bytes from 'in', throwing EOFException if insufficient bytes are available.static voidStreams. readFully(InputStream in, byte[] dst, int offset, int byteCount)Reads exactly 'byteCount' bytes from 'in' (into 'dst' at offset 'offset'), and throws EOFException if insufficient bytes are available.static byte[]Streams. readFullyNoClose(InputStream in)Returns a byte[] containing the remainder of 'in'.static intStreams. readSingleByte(InputStream in)Implements InputStream.read(int) in terms of InputStream.read(byte[], int, int).static voidStreams. skipAll(InputStream in)static longStreams. skipByReading(InputStream in, long byteCount)Callin.read()repeatedly until either the stream is exhausted orbyteCountbytes have been read.Constructors in libcore.io with parameters of type InputStream Constructor Description StrictLineReader(InputStream in)Constructs a newStrictLineReaderwith the default capacity and charset.StrictLineReader(InputStream in, int capacity)Constructs a newLineReaderwith the specified capacity and the default charset.StrictLineReader(InputStream in, int capacity, Charset charset)Constructs a newLineReaderwith the specified capacity and charset.StrictLineReader(InputStream in, Charset charset)Constructs a newLineReaderwith the specified charset and the default capacity. -
Uses of InputStream in libcore.net.url
Methods in libcore.net.url that return InputStream Modifier and Type Method Description InputStreamFileURLConnection. getInputStream()Returns the input stream of the object referred to by thisURLConnectionFile Sample : "/ZIP211/+/harmony/tools/javac/resources/javac.properties" Invalid File Sample: "/ZIP/+/harmony/tools/javac/resources/javac.properties" "ZIP211/+/harmony/tools/javac/resources/javac.properties"InputStreamFtpURLConnection. getInputStream()Creates a input stream for writing to this URL Connection.InputStreamJarURLConnectionImpl. getInputStream()Creates an input stream for reading from this URL Connection. -
Uses of InputStream in org.apache.harmony.security.asn1
Methods in org.apache.harmony.security.asn1 with parameters of type InputStream Modifier and Type Method Description ObjectASN1Type. decode(InputStream in)voidASN1Type. verify(InputStream in)Constructors in org.apache.harmony.security.asn1 with parameters of type InputStream Constructor Description BerInputStream(InputStream in)Creates stream for decoding.BerInputStream(InputStream in, int initialSize)Creates stream for decoding.DerInputStream(InputStream in) -
Uses of InputStream in org.apache.harmony.security.provider.cert
Methods in org.apache.harmony.security.provider.cert with parameters of type InputStream Modifier and Type Method Description CertificateX509CertFactoryImpl. engineGenerateCertificate(InputStream inStream)Generates the X.509 certificate from the data in the stream.Collection<? extends Certificate>X509CertFactoryImpl. engineGenerateCertificates(InputStream inStream)Generates the collection of the certificates on the base of provided via input stream encodings.CertPathX509CertFactoryImpl. engineGenerateCertPath(InputStream inStream)CertPathX509CertFactoryImpl. engineGenerateCertPath(InputStream inStream, String encoding)CRLX509CertFactoryImpl. engineGenerateCRL(InputStream inStream)Collection<? extends CRL>X509CertFactoryImpl. engineGenerateCRLs(InputStream inStream)static X509CertPathImplX509CertPathImpl. getInstance(InputStream in)Generates certification path object on the base of PkiPath encoded form provided via input stream.static X509CertPathImplX509CertPathImpl. getInstance(InputStream in, String encoding)Generates certification path object on the basis of encoding provided via input stream.Constructors in org.apache.harmony.security.provider.cert with parameters of type InputStream Constructor Description X509CertImpl(InputStream in)Constructs the instance on the base of ASN.1 encoded form of X.509 certificate provided via stream parameter.X509CRLImpl(InputStream in)Creates X.509 CRL on the base of ASN.1 DER encoded form of the CRL (CertificateList structure described in RFC 3280) provided via input stream. -
Uses of InputStream in org.apache.harmony.security.utils
Methods in org.apache.harmony.security.utils with parameters of type InputStream Modifier and Type Method Description static Certificate[]JarUtils. verifySignature(InputStream signature, InputStream signatureBlock)This method handle all the work with PKCS7, ASN1 encoding, signature verifying, and certification path building. -
Uses of InputStream in org.apache.http
Methods in org.apache.http that return InputStream Modifier and Type Method Description InputStreamHttpEntity. getContent()Creates a new InputStream object of the entity. -
Uses of InputStream in org.apache.http.conn
Subclasses of InputStream in org.apache.http.conn Modifier and Type Class Description classEofSensorInputStreamA stream wrapper that triggers actions onclose()and EOF.Fields in org.apache.http.conn declared as InputStream Modifier and Type Field Description protected InputStreamEofSensorInputStream. wrappedStreamThe wrapped input stream, while accessible.Methods in org.apache.http.conn that return InputStream Modifier and Type Method Description InputStreamBasicManagedEntity. getContent()Methods in org.apache.http.conn with parameters of type InputStream Modifier and Type Method Description booleanBasicEofSensorWatcher. eofDetected(InputStream wrapped)booleanBasicManagedEntity. eofDetected(InputStream wrapped)booleanEofSensorWatcher. eofDetected(InputStream wrapped)Indicates that EOF is detected.booleanBasicEofSensorWatcher. streamAbort(InputStream wrapped)booleanBasicManagedEntity. streamAbort(InputStream wrapped)booleanEofSensorWatcher. streamAbort(InputStream wrapped)Indicates that thestreamis aborted.booleanBasicEofSensorWatcher. streamClosed(InputStream wrapped)booleanBasicManagedEntity. streamClosed(InputStream wrapped)booleanEofSensorWatcher. streamClosed(InputStream wrapped)Indicates that thestreamis closed.Constructors in org.apache.http.conn with parameters of type InputStream Constructor Description EofSensorInputStream(InputStream in, EofSensorWatcher watcher)Creates a new EOF sensor. -
Uses of InputStream in org.apache.http.entity
Methods in org.apache.http.entity that return InputStream Modifier and Type Method Description InputStreamBasicHttpEntity. getContent()Obtains the content, once only.InputStreamBufferedHttpEntity. getContent()InputStreamByteArrayEntity. getContent()InputStreamEntityTemplate. getContent()InputStreamFileEntity. getContent()InputStreamHttpEntityWrapper. getContent()InputStreamInputStreamEntity. getContent()InputStreamSerializableEntity. getContent()InputStreamStringEntity. getContent()Methods in org.apache.http.entity with parameters of type InputStream Modifier and Type Method Description voidBasicHttpEntity. setContent(InputStream instream)Specifies the content.Constructors in org.apache.http.entity with parameters of type InputStream Constructor Description InputStreamEntity(InputStream instream, long length) -
Uses of InputStream in org.apache.http.impl.conn
Methods in org.apache.http.impl.conn with parameters of type InputStream Modifier and Type Method Description voidWire. input(InputStream instream)voidWire. output(InputStream outstream) -
Uses of InputStream in org.apache.http.impl.io
Subclasses of InputStream in org.apache.http.impl.io Modifier and Type Class Description classChunkedInputStreamImplements chunked transfer coding.classContentLengthInputStreamStream that cuts off after a specified number of bytes.classIdentityInputStreamA stream for reading from asession input buffer.Methods in org.apache.http.impl.io with parameters of type InputStream Modifier and Type Method Description protected voidAbstractSessionInputBuffer. init(InputStream instream, int buffersize, HttpParams params) -
Uses of InputStream in org.bouncycastle.asn1
Subclasses of InputStream in org.bouncycastle.asn1 Modifier and Type Class Description classASN1InputStreama general purpose ASN.1 decoder - note: this class differs from the others in that it returns null after it has read the last object in the stream.Methods in org.bouncycastle.asn1 that return InputStream Modifier and Type Method Description InputStreamASN1OctetString. getOctetStream()InputStreamASN1OctetStringParser. getOctetStream()InputStreamBEROctetStringParser. getOctetStream()InputStreamDEROctetStringParser. getOctetStream()Methods in org.bouncycastle.asn1 with parameters of type InputStream Modifier and Type Method Description protected voidBERGenerator. writeBERBody(InputStream contentStream)Constructors in org.bouncycastle.asn1 with parameters of type InputStream Constructor Description ASN1InputStream(InputStream is)ASN1InputStream(InputStream input, boolean lazyEvaluate)Create an ASN1InputStream where no DER object will be longer than limit, and constructed objects such as sequences will be parsed lazily.ASN1InputStream(InputStream input, int limit)Create an ASN1InputStream where no DER object will be longer than limit.ASN1InputStream(InputStream input, int limit, boolean lazyEvaluate)Create an ASN1InputStream where no DER object will be longer than limit, and constructed objects such as sequences will be parsed lazily.ASN1StreamParser(InputStream in)ASN1StreamParser(InputStream in, int limit) -
Uses of InputStream in org.bouncycastle.cert
Constructors in org.bouncycastle.cert with parameters of type InputStream Constructor Description X509CRLHolder(InputStream crlStream)Create a X509CRLHolder from the passed in InputStream. -
Uses of InputStream in org.bouncycastle.cms
Methods in org.bouncycastle.cms that return InputStream Modifier and Type Method Description InputStreamCMSAbsentContent. getInputStream()InputStreamCMSProcessableByteArray. getInputStream()Constructors in org.bouncycastle.cms with parameters of type InputStream Constructor Description CMSSignedData(InputStream sigData)base constructor - with encapsulated contentCMSSignedData(CMSProcessable signedContent, InputStream sigData)base constructor - content with detached signature. -
Uses of InputStream in org.bouncycastle.crypto.io
Subclasses of InputStream in org.bouncycastle.crypto.io Modifier and Type Class Description classCipherInputStreamA CipherInputStream is composed of an InputStream and a BufferedBlockCipher so that read() methods return data that are read in from the underlying InputStream but have been additionally processed by the Cipher.classDigestInputStreamclassMacInputStreamConstructors in org.bouncycastle.crypto.io with parameters of type InputStream Constructor Description CipherInputStream(InputStream is, BufferedBlockCipher cipher)Constructs a CipherInputStream from an InputStream and a BufferedBlockCipher.CipherInputStream(InputStream is, StreamCipher cipher)DigestInputStream(InputStream stream, Digest digest)MacInputStream(InputStream stream, Mac mac) -
Uses of InputStream in org.bouncycastle.crypto.util
Methods in org.bouncycastle.crypto.util with parameters of type InputStream Modifier and Type Method Description static AsymmetricKeyParameterPrivateKeyFactory. createKey(InputStream inStr)Create a private key parameter from a PKCS8 PrivateKeyInfo encoding read from a stream.static AsymmetricKeyParameterPublicKeyFactory. createKey(InputStream inStr)Create a public key from a SubjectPublicKeyInfo encoding read from a stream -
Uses of InputStream in org.bouncycastle.jcajce.provider.asymmetric.x509
Methods in org.bouncycastle.jcajce.provider.asymmetric.x509 with parameters of type InputStream Modifier and Type Method Description CertificateCertificateFactory. engineGenerateCertificate(InputStream in)Generates a certificate object and initializes it with the data read from the input stream inStream.CollectionCertificateFactory. engineGenerateCertificates(InputStream inStream)Returns a (possibly empty) collection view of the certificates read from the given input stream inStream.CertPathCertificateFactory. engineGenerateCertPath(InputStream inStream)CertPathCertificateFactory. engineGenerateCertPath(InputStream inStream, String encoding)CRLCertificateFactory. engineGenerateCRL(InputStream inStream)Generates a certificate revocation list (CRL) object and initializes it with the data read from the input stream inStream.CollectionCertificateFactory. engineGenerateCRLs(InputStream inStream)Returns a (possibly empty) collection view of the CRLs read from the given input stream inStream. -
Uses of InputStream in org.bouncycastle.jcajce.provider.keystore.bc
Methods in org.bouncycastle.jcajce.provider.keystore.bc with parameters of type InputStream Modifier and Type Method Description voidBcKeyStoreSpi.BouncyCastleStore. engineLoad(InputStream stream, char[] password)voidBcKeyStoreSpi. engineLoad(InputStream stream, char[] password)protected voidBcKeyStoreSpi. loadStore(InputStream in) -
Uses of InputStream in org.bouncycastle.jcajce.provider.keystore.pkcs12
Methods in org.bouncycastle.jcajce.provider.keystore.pkcs12 with parameters of type InputStream Modifier and Type Method Description voidPKCS12KeyStoreSpi. engineLoad(InputStream stream, char[] password) -
Uses of InputStream in org.bouncycastle.util.io
Subclasses of InputStream in org.bouncycastle.util.io Modifier and Type Class Description classTeeInputStreamMethods in org.bouncycastle.util.io with parameters of type InputStream Modifier and Type Method Description static voidStreams. drain(InputStream inStr)static voidStreams. pipeAll(InputStream inStr, OutputStream outStr)static longStreams. pipeAllLimited(InputStream inStr, long limit, OutputStream outStr)static byte[]Streams. readAll(InputStream inStr)static byte[]Streams. readAllLimited(InputStream inStr, int limit)static intStreams. readFully(InputStream inStr, byte[] buf)static intStreams. readFully(InputStream inStr, byte[] buf, int off, int len)Constructors in org.bouncycastle.util.io with parameters of type InputStream Constructor Description TeeInputStream(InputStream input, OutputStream output) -
Uses of InputStream in org.bouncycastle.x509
Constructors in org.bouncycastle.x509 with parameters of type InputStream Constructor Description X509V2AttributeCertificate(InputStream encIn)Deprecated. -
Uses of InputStream in org.conscrypt
Subclasses of InputStream in org.conscrypt Modifier and Type Class Description classHandshakeIODataStreamThis class provides Input/Output data functionality for handshake layer.classOpenSSLBIOInputStreamProvides an interface to OpenSSL's BIO system directly from a Java InputStream.classSSLBufferedInputThis is a wrapper input stream for ByteBuffer data source.classSSLInputStreamThis class is a base for all input stream classes used in protocol implementation.classSSLSocketInputStreamThis class provides input data stream functionality for SSLSocket.classSSLStreamedInputThis class acts like a filtered input stream: it takes the bytes from another InputStream.Fields in org.conscrypt declared as InputStream Modifier and Type Field Description protected InputStreamSSLSocketImpl. inputMethods in org.conscrypt that return InputStream Modifier and Type Method Description InputStreamOpenSSLSocketImpl. getInputStream()InputStreamSSLSocketImpl. getInputStream()This method works according to the specification of implemented class.Methods in org.conscrypt with parameters of type InputStream Modifier and Type Method Description CertificateOpenSSLX509CertificateFactory. engineGenerateCertificate(InputStream inStream)Collection<? extends Certificate>OpenSSLX509CertificateFactory. engineGenerateCertificates(InputStream inStream)CertPathOpenSSLX509CertificateFactory. engineGenerateCertPath(InputStream inStream)CertPathOpenSSLX509CertificateFactory. engineGenerateCertPath(InputStream inStream, String encoding)CRLOpenSSLX509CertificateFactory. engineGenerateCRL(InputStream inStream)Collection<? extends CRL>OpenSSLX509CertificateFactory. engineGenerateCRLs(InputStream inStream)voidTrustedCertificateKeyStoreSpi. engineLoad(InputStream stream, char[] password)static CertPathOpenSSLX509CertPath. fromEncoding(InputStream inStream)static CertPathOpenSSLX509CertPath. fromEncoding(InputStream inStream, String encoding)static List<OpenSSLX509Certificate>OpenSSLX509Certificate. fromPkcs7DerInputStream(InputStream is)static List<OpenSSLX509CRL>OpenSSLX509CRL. fromPkcs7DerInputStream(InputStream is)static List<OpenSSLX509Certificate>OpenSSLX509Certificate. fromPkcs7PemInputStream(InputStream is)static List<OpenSSLX509CRL>OpenSSLX509CRL. fromPkcs7PemInputStream(InputStream is)static OpenSSLX509CertificateOpenSSLX509Certificate. fromX509DerInputStream(InputStream is)static OpenSSLX509CRLOpenSSLX509CRL. fromX509DerInputStream(InputStream is)static OpenSSLX509CertificateOpenSSLX509Certificate. fromX509PemInputStream(InputStream is)static OpenSSLX509CRLOpenSSLX509CRL. fromX509PemInputStream(InputStream is)Constructors in org.conscrypt with parameters of type InputStream Constructor Description OpenSSLBIOInputStream(InputStream is)SSLStreamedInput(InputStream in) -
Uses of InputStream in org.kxml2.io
Methods in org.kxml2.io with parameters of type InputStream Modifier and Type Method Description voidKXmlParser. setInput(InputStream is, String charset) -
Uses of InputStream in org.w3c.dom.ls
Methods in org.w3c.dom.ls that return InputStream Modifier and Type Method Description InputStreamLSInput. getByteStream()An attribute of a language and binding dependent type that represents a stream of bytes.Methods in org.w3c.dom.ls with parameters of type InputStream Modifier and Type Method Description voidLSInput. setByteStream(InputStream byteStream)An attribute of a language and binding dependent type that represents a stream of bytes. -
Uses of InputStream in org.xml.sax
Methods in org.xml.sax that return InputStream Modifier and Type Method Description InputStreamInputSource. getByteStream()Get the byte stream for this input source.Methods in org.xml.sax with parameters of type InputStream Modifier and Type Method Description voidInputSource. setByteStream(InputStream byteStream)Set the byte stream for this input source.Constructors in org.xml.sax with parameters of type InputStream Constructor Description InputSource(InputStream byteStream)Create a new input source with a byte stream. -
Uses of InputStream in org.xmlpull.v1
Methods in org.xmlpull.v1 with parameters of type InputStream Modifier and Type Method Description voidXmlPullParser. setInput(InputStream inputStream, String inputEncoding)Sets the input stream the parser is going to process. -
Uses of InputStream in SQLite
Methods in SQLite that return InputStream Modifier and Type Method Description InputStreamBlob. getInputStream()Return InputStream for this blob -
Uses of InputStream in SQLite.JDBC2z
Methods in SQLite.JDBC2z that return InputStream Modifier and Type Method Description InputStreamJDBCResultSet. getAsciiStream(int columnIndex)InputStreamJDBCResultSet. getAsciiStream(String columnName)InputStreamJDBCResultSet. getBinaryStream(int columnIndex)InputStreamJDBCResultSet. getBinaryStream(String columnName)InputStreamJDBCResultSet. getUnicodeStream(int columnIndex)Deprecated.InputStreamJDBCResultSet. getUnicodeStream(String columnName)Deprecated.Methods in SQLite.JDBC2z with parameters of type InputStream Modifier and Type Method Description voidJDBCPreparedStatement. setAsciiStream(int parameterIndex, InputStream x)voidJDBCPreparedStatement. setAsciiStream(int parameterIndex, InputStream x, int length)voidJDBCPreparedStatement. setAsciiStream(int parameterIndex, InputStream x, long len)voidJDBCPreparedStatement. setAsciiStream(String parameterName, InputStream x)voidJDBCPreparedStatement. setAsciiStream(String parameterName, InputStream s, int length)voidJDBCPreparedStatement. setAsciiStream(String parameterName, InputStream x, long len)voidJDBCPreparedStatement. setBinaryStream(int parameterIndex, InputStream x)voidJDBCPreparedStatement. setBinaryStream(int parameterIndex, InputStream x, int length)voidJDBCPreparedStatement. setBinaryStream(int parameterIndex, InputStream x, long len)voidJDBCPreparedStatement. setBinaryStream(String parameterName, InputStream x)voidJDBCPreparedStatement. setBinaryStream(String parameterName, InputStream s, int length)voidJDBCPreparedStatement. setBinaryStream(String parameterName, InputStream x, long len)voidJDBCPreparedStatement. setBlob(int parameterIndex, InputStream x)voidJDBCPreparedStatement. setBlob(int parameterIndex, InputStream x, long len)voidJDBCPreparedStatement. setBlob(String parameterName, InputStream x)voidJDBCPreparedStatement. setBlob(String parameterName, InputStream x, long len)voidJDBCPreparedStatement. setUnicodeStream(int parameterIndex, InputStream x, int length)Deprecated.voidJDBCResultSet. updateAsciiStream(int colIndex, InputStream x)voidJDBCResultSet. updateAsciiStream(int colIndex, InputStream in, int s)voidJDBCResultSet. updateAsciiStream(int colIndex, InputStream x, long len)voidJDBCResultSet. updateAsciiStream(String colName, InputStream x)voidJDBCResultSet. updateAsciiStream(String colName, InputStream in, int s)voidJDBCResultSet. updateAsciiStream(String colName, InputStream x, long len)voidJDBCResultSet. updateBinaryStream(int colIndex, InputStream x)voidJDBCResultSet. updateBinaryStream(int colIndex, InputStream in, int s)voidJDBCResultSet. updateBinaryStream(int colIndex, InputStream x, long len)voidJDBCResultSet. updateBinaryStream(String colName, InputStream x)voidJDBCResultSet. updateBinaryStream(String colName, InputStream in, int s)voidJDBCResultSet. updateBinaryStream(String colName, InputStream x, long len)voidJDBCResultSet. updateBlob(int colIndex, InputStream x)voidJDBCResultSet. updateBlob(int colIndex, InputStream x, long len)voidJDBCResultSet. updateBlob(String colName, InputStream x)voidJDBCResultSet. updateBlob(String colName, InputStream x, long len)
LineNumberReaderinstead.