- SequenceInputStream - Class in java.io
-
A SequenceInputStream
represents
the logical concatenation of other input
streams.
- SequenceInputStream(Enumeration<? extends InputStream>) - Constructor for class java.io.SequenceInputStream
-
Initializes a newly created SequenceInputStream
by remembering the argument, which must
be an Enumeration
that produces
objects whose run-time type is InputStream
.
- SequenceInputStream(InputStream, InputStream) - Constructor for class java.io.SequenceInputStream
-
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
.
- setError() - Method in class java.io.PrintWriter
-
Indicates that an error has occurred.
- skip(long) - Method in class java.io.BufferedInputStream
-
See the general contract of the skip
method of InputStream
.
- skip(long) - Method in class java.io.BufferedReader
-
Skips characters.
- skip(long) - Method in class java.io.CharArrayReader
-
Skips characters.
- skip(long) - Method in class java.io.PushbackInputStream
-
Skips over and discards n
bytes of data from this
input stream.
- skip(long) - Method in class java.io.StringReader
-
Skips the specified number of characters in the stream.
- StringReader - Class in java.io
-
A character stream whose source is a string.
- StringReader(String) - Constructor for class java.io.StringReader
-
Creates a new string reader.
- StringWriter - Class in java.io
-
A character stream that collects its output in a string buffer, which can
then be used to construct a string.
- StringWriter() - Constructor for class java.io.StringWriter
-
Create a new string writer using the default initial string-buffer
size.
- StringWriter(int) - Constructor for class java.io.StringWriter
-
Create a new string writer using the specified initial string-buffer
size.