"

2013 FRC Java API

"

Uses of Class
java.io.InputStream

Packages that use InputStream
com.sun.cldc.i18n   
com.sun.squawk Provides classes for low level interactions with the Squawk VM. 
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.connections   
com.sun.squawk.io.j2me.channel   
com.sun.squawk.io.j2me.file   
com.sun.squawk.io.j2me.http   
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.) 
java.io Provides classes for input and output through data streams. 
java.lang MID Profile Language Classes included from Java 2 Standard Edition. 
javax.microedition.io Classes for the Generic Connection framework. 
 

Uses of InputStream in com.sun.cldc.i18n
 

Fields in com.sun.cldc.i18n declared as InputStream
 InputStream StreamReader.in
          Input stream to read from
 

Methods in com.sun.cldc.i18n with parameters of type InputStream
static Reader Helper.getStreamReader(InputStream is)
          Get a reader for an InputStream
static Reader Helper.getStreamReader(InputStream is, String name)
          Get a reader for an InputStream
 Reader StreamReader.open(InputStream in, String enc)
          Open the reader
 

Uses of InputStream in com.sun.squawk
 

Methods in com.sun.squawk that return InputStream
 InputStream Klass.getResourceAsStream(String name)
          Finds a resource with a given name.
 InputStream Suite.getResourceAsStream(String name, Klass klass)
          Finds a resource with a given name.
 

Uses of InputStream in com.sun.squawk.io
 

Methods in com.sun.squawk.io that return InputStream
 InputStream ConnectionBase.openInputStream()
          Open and return a data input stream for a connection.
 InputStream ConnectionBaseAdapter.openInputStream()
          Returns an input stream.
 

Uses of InputStream in com.sun.squawk.io.connections
 

Methods in com.sun.squawk.io.connections that return InputStream
 InputStream ClasspathConnection.openInputStream(String name)
           
 

Uses of InputStream in com.sun.squawk.io.j2me.channel
 

Subclasses of InputStream in com.sun.squawk.io.j2me.channel
 class ChannelInputStream
          ChannelInputStream
 

Methods in com.sun.squawk.io.j2me.channel that return InputStream
 InputStream Protocol.openInputStream()
          openInputStream
 

Uses of InputStream in com.sun.squawk.io.j2me.file
 

Methods in com.sun.squawk.io.j2me.file that return InputStream
 InputStream Protocol.openInputStream()
          Open and return an input stream for a connection.
 

Uses of InputStream in com.sun.squawk.io.j2me.http
 

Methods in com.sun.squawk.io.j2me.http that return InputStream
 InputStream Protocol.openInputStream()
           
 

Uses of InputStream in com.sun.squawk.io.j2me.socket
 

Methods in com.sun.squawk.io.j2me.socket that return InputStream
 InputStream Protocol.openInputStream()
          Returns an input stream for this socket.
 

Uses of InputStream in com.sun.squawk.microedition.io
 

Methods in com.sun.squawk.microedition.io that return InputStream
 InputStream FileConnection.openInputStream()
           
 

Uses of InputStream in com.sun.squawk.util
 

Subclasses of InputStream in com.sun.squawk.util
 class ByteArrayInputStreamWithSetBytes
          An extention of ByteArrayInputStream that allows the byte array buffer to be modified, using the ByteArrayInputStreamWithSetBytes.setBytes(byte[], int, int) method.
 

Constructors in com.sun.squawk.util with parameters of type InputStream
StructuredFileInputStream(InputStream in, String filePath, String traceFeature)
          Creates a StructuredFileInputStream that reads class components from a given input stream.
 

Uses of InputStream in java.io
 

Subclasses of InputStream in java.io
 class ByteArrayInputStream
          A ByteArrayInputStream contains an internal buffer that contains bytes that may be read from the stream.
 class DataInputStream
          A data input stream lets an application read primitive Java data types from an underlying input stream in a machine-independent way.
 

Fields in java.io declared as InputStream
protected  InputStream DataInputStream.in
          The input stream.
 

Constructors in java.io with parameters of type InputStream
DataInputStream(InputStream in)
          Creates a DataInputStream and saves its argument, the input stream in, for later use.
InputStreamReader(InputStream is)
          Create an InputStreamReader that uses the default character encoding.
InputStreamReader(InputStream is, String enc)
          Create an InputStreamReader that uses the named character encoding.
 

Uses of InputStream in java.lang
 

Methods in java.lang that return InputStream
 InputStream Class.getResourceAsStream(String name)
          Finds a resource with a given name.
 

Uses of InputStream in javax.microedition.io
 

Methods in javax.microedition.io that return InputStream
 InputStream InputConnection.openInputStream()
          Open and return an input stream for a connection.
static InputStream Connector.openInputStream(String name)
          Create and open a connection input stream.
 


"

2013 FRC Java API

"

"
For updated information see the Java FRC site
"