property is not set. Don't call decode with null argument.
* java/lang/Long.java (getLong): Likewise.
+ * java/io/CharArrayReader.java (CharArrayReader): Throw
+ IllegalArgumentException if constructor arguments are illegal.
+ (ready): Return false if no more characters can be read.
+ * java/io/ByteArrayInputStream.java (ByteArrayInputStream): Likewise.
+
2001-02-17 Mark Wielaard <mark@klomp.org>
* java/util/TimerTask.java: New version from Classpath.
public ByteArrayInputStream(byte[] buffer, int offset, int length)
{
+ if (offset < 0 || length < 0 || offset > buffer.length)
+ throw new IllegalArgumentException();
+
buf = buffer;
count = offset + length;
count = buf.length;
pos = offset;
- // TBD: What should we do if pos is neg. or > count? E.g. throw exc. or:
- // if (pos < 0 || pos > count)
- // pos = 0;
-
mark = pos;
}
public CharArrayReader(char[] buffer, int offset, int length)
{
super();
+ if (offset < 0 || length < 0 || offset > buffer.length)
+ throw new IllegalArgumentException();
+
buf = buffer;
count = offset + length;
if (count > buf.length)
count = buf.length;
-
+
pos = offset;
- // TBD: What should we do if pos is neg. or > count? E.g. throw exc. or:
- // if (pos < 0 || pos > count)
- // pos = 0;
-
markedPos = pos;
}
}
}
+ /** Return true if more characters are available to be read.
+ *
+ * @specnote The JDK 1.3 API docs are wrong here. This method will
+ * return false if there are no more characters available.
+ */
public boolean ready() throws IOException
{
if (buf == null)
throw new IOException("Stream closed");
- return true;
+ return (pos < count);
}
public void reset() throws IOException