Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/io/StringBufferInputStream.java
/* * Copyright (c) 1995, 2004, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.io; /** * This class allows an application to create an input stream in * which the bytes read are supplied by the contents of a string. * Applications can also read bytes from a byte array by using a * <code>ByteArrayInputStream</code>. * <p> * Only the low eight bits of each character in the string are used by * this class. * * @author Arthur van Hoff * @see java.io.ByteArrayInputStream * @see java.io.StringReader * @since 1.0 * @deprecated This class does not properly convert characters into bytes. As * of JDK 1.1, the preferred way to create a stream from a * string is via the <code>StringReader</code> class. */ @Deprecated public class StringBufferInputStream extends InputStream { /** * The string from which bytes are read. */ protected String buffer; /** * The index of the next character to read from the input stream buffer. * * @see java.io.StringBufferInputStream#buffer */ protected int pos; /** * The number of valid characters in the input stream buffer. * * @see java.io.StringBufferInputStream#buffer */ protected int count; /** * Creates a string input stream to read data from the specified string. * * @param s the underlying input buffer. */ public StringBufferInputStream(String s) { this.buffer = s; count = s.length(); } /** * Reads the next byte of data from this 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. * <p> * The <code>read</code> method of * <code>StringBufferInputStream</code> cannot block. It returns the * low eight bits of the next character in this input stream's buffer. * * @return the next byte of data, or <code>-1</code> if the end of the * stream is reached. */ public synchronized int read() { return (pos < count) ? (buffer.charAt(pos++) & 0xFF) : -1; } /** * Reads up to <code>len</code> bytes of data from this input stream * into an array of bytes. * <p> * The <code>read</code> method of * <code>StringBufferInputStream</code> cannot block. It copies the * low eight bits from the characters in this input stream's buffer into * the byte array argument. * * @param b the buffer into which the data is read. * @param off the start offset of the data. * @param len the maximum number of bytes 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. */ @SuppressWarnings("deprecation") public synchronized int read(byte b[], int off, int len) { 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(); } if (pos >= count) { return -1; } int avail = count - pos; if (len > avail) { len = avail; } if (len <= 0) { return 0; } buffer.getBytes(pos, pos + len, b, off); pos += len; return len; } /** * Skips <code>n</code> bytes of input from this input stream. Fewer * bytes might be skipped if the end of the input stream is reached. * * @param n the number of bytes to be skipped. * @return the actual number of bytes skipped. */ public synchronized long skip(long n) { if (n < 0) { return 0; } if (n > count - pos) { n = count - pos; } pos += n; return n; } /** * Returns the number of bytes that can be read from the input * stream without blocking. * * @return the value of <code>count - pos</code>, which is the * number of bytes remaining to be read from the input buffer. */ public synchronized int available() { return count - pos; } /** * Resets the input stream to begin reading from the first character * of this input stream's underlying buffer. */ public synchronized void reset() { pos = 0; } }
⏎ java/io/StringBufferInputStream.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 246361👍, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 6? If you want to write Java applications, yo...
commons-net.jar is the bytecode of Apache Commons Net library, which implements the client side of m...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
MP3SPI is a Java Service Provider Interface that adds MP3 (MPEG 1/2/2.5 Layer 1/2/3) audio format su...
JRE 8 rt.jar is the JAR file for JRE 8 RT (Runtime) libraries. JRE (Java Runtime) 8 is the runtime e...