⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputstream.java

📁 This is a resource based on j2me embedded,if you dont understand,you can connection with me .
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * @(#)InputStream.java	1.44 06/10/10 * * Copyright  1990-2008 Sun Microsystems, Inc. All Rights Reserved.   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER   *    * This program is free software; you can redistribute it and/or   * modify it under the terms of the GNU General Public License version   * 2 only, as published by the Free Software Foundation.    *    * This program is distributed in the hope that it will be useful, but   * WITHOUT ANY WARRANTY; without even the implied warranty of   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU   * General Public License version 2 for more details (a copy is   * included at /legal/license.txt).    *    * You should have received a copy of the GNU General Public License   * version 2 along with this work; if not, write to the Free Software   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA   * 02110-1301 USA    *    * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa   * Clara, CA 95054 or visit www.sun.com if you need additional   * information or have any questions.  * */package java.io;/** * This abstract class is the superclass of all classes representing * an input stream of bytes. * * <p> Applications that need to define a subclass of <code>InputStream</code> * must always provide a method that returns the next byte of input. * * @version 1.36, 02/02/00 * @see     java.io.BufferedInputStream * @see     java.io.ByteArrayInputStream * @see     java.io.DataInputStream * @see     java.io.FilterInputStream * @see     java.io.InputStream#read() * @see     java.io.OutputStream * @see     java.io.PushbackInputStream * @since   JDK1.0 */public abstract class InputStream {    // SKIP_BUFFER_SIZE is used to determine the size of skipBuffer    private static final int SKIP_BUFFER_SIZE = 2048;    // skipBuffer is initialized in skip(long), if needed.    private static byte[] skipBuffer;    /**     * Reads the next byte of data from the input stream. The value byte is     * returned as an <code>int</code> in the range <code>0</code> to     * <code>255</code>. If no byte is available because the end of the stream     * has been reached, the value <code>-1</code> is returned. This method     * blocks until input data is available, the end of the stream is detected,     * or an exception is thrown.     *     * <p> A subclass must provide an implementation of this method.     *     * @return     the next byte of data, or <code>-1</code> if the end of the     *             stream is reached.     * @exception  IOException  if an I/O error occurs.     */    public abstract int read() throws IOException;    /**     * Reads some number of bytes from the input stream and stores them into     * the buffer array <code>b</code>. The number of bytes actually read is     * returned as an integer.  This method blocks until input data is     * available, end of file is detected, or an exception is thrown.     *     * <p> If <code>b</code> is <code>null</code>, a     * <code>NullPointerException</code> is thrown.  If the length of     * <code>b</code> is zero, then no bytes are read and <code>0</code> is     * returned; otherwise, there is an attempt to read at least one byte. If     * no byte is available because the stream is at end of file, the value     * <code>-1</code> is returned; otherwise, at least one byte is read and     * stored into <code>b</code>.     *     * <p> The first byte read is stored into element <code>b[0]</code>, the     * next one into <code>b[1]</code>, and so on. The number of bytes read is,     * at most, equal to the length of <code>b</code>. Let <i>k</i> be the     * number of bytes actually read; these bytes will be stored in elements     * <code>b[0]</code> through <code>b[</code><i>k</i><code>-1]</code>,     * leaving elements <code>b[</code><i>k</i><code>]</code> through     * <code>b[b.length-1]</code> unaffected.     *     * <p> If the first byte cannot be read for any reason other than end of     * file, then an <code>IOException</code> is thrown. In particular, an     * <code>IOException</code> is thrown if the input stream has been closed.     *     * <p> The <code>read(b)</code> method for class <code>InputStream</code>     * has the same effect as: <pre><code> read(b, 0, b.length) </code></pre>     *     * @param      b   the buffer into which the data is read.     * @return     the total number of bytes read into the buffer, or     *             <code>-1</code> is there is no more data because the end of     *             the stream has been reached.     * @exception  IOException  if an I/O error occurs.     * @exception  NullPointerException  if <code>b</code> is <code>null</code>.     * @see        java.io.InputStream#read(byte[], int, int)     */    public int read(byte b[]) throws IOException {	return read(b, 0, b.length);    }    /**     * Reads up to <code>len</code> bytes of data from the input stream into     * an array of bytes.  An attempt is made to read as many as     * <code>len</code> bytes, but a smaller number may be read, possibly     * zero. The number of bytes actually read is returned as an integer.     *     * <p> This method blocks until input data is available, end of file is     * detected, or an exception is thrown.     *     * <p> If <code>b</code> is <code>null</code>, a     * <code>NullPointerException</code> is thrown.     *     * <p> If <code>off</code> is negative, or <code>len</code> is negative, or     * <code>off+len</code> is greater than the length of the array     * <code>b</code>, then an <code>IndexOutOfBoundsException</code> is     * thrown.     *     * <p> If <code>len</code> is zero, then no bytes are read and     * <code>0</code> is returned; otherwise, there is an attempt to read at     * least one byte. If no byte is available because the stream is at end of     * file, the value <code>-1</code> is returned; otherwise, at least one     * byte is read and stored into <code>b</code>.     *     * <p> The first byte read is stored into element <code>b[off]</code>, the     * next one into <code>b[off+1]</code>, and so on. The number of bytes read     * is, at most, equal to <code>len</code>. Let <i>k</i> be the number of     * bytes actually read; these bytes will be stored in elements     * <code>b[off]</code> through <code>b[off+</code><i>k</i><code>-1]</code>,     * leaving elements <code>b[off+</code><i>k</i><code>]</code> through     * <code>b[off+len-1]</code> unaffected.     *     * <p> In every case, elements <code>b[0]</code> through     * <code>b[off]</code> and elements <code>b[off+len]</code> through     * <code>b[b.length-1]</code> are unaffected.     *     * <p> If the first byte cannot be read for any reason other than end of     * file, then an <code>IOException</code> is thrown. In particular, an     * <code>IOException</code> is thrown if the input stream has been closed.     *     * <p> The <code>read(b,</code> <code>off,</code> <code>len)</code> method     * for class <code>InputStream</code> simply calls the method     * <code>read()</code> repeatedly. If the first such call results in an     * <code>IOException</code>, that exception is returned from the call to     * the <code>read(b,</code> <code>off,</code> <code>len)</code> method.  If     * any subsequent call to <code>read()</code> results in a     * <code>IOException</code>, the exception is caught and treated as if it     * were end of file; the bytes read up to that point are stored into     * <code>b</code> and the number of bytes read before the exception     * occurred is returned.  Subclasses are encouraged to provide a more     * efficient implementation of this method.     *     * @param      b     the buffer into which the data is read.     * @param      off   the start offset in array <code>b</code>     *                   at which the data is written.     * @param      len   the maximum number of bytes to read.     * @return     the total number of bytes read into the buffer, or     *             <code>-1</code> if there is no more data because the end of     *             the stream has been reached.     * @exception  IOException  if an I/O error occurs.     * @exception  NullPointerException  if <code>b</code> is <code>null</code>.     * @see        java.io.InputStream#read()     */    public int read(byte b[], int off, int len) throws IOException {	if (b == null) {	    throw new NullPointerException();	} else if ((off < 0) || (off > b.length) || (len < 0) ||		   ((off + len) > b.length) || ((off + len) < 0)) {	    throw new IndexOutOfBoundsException();	} else if (len == 0) {	    return 0;	}	int c = read();	if (c == -1) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -