Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/io/ObjectInput.java
/* * @(#)ObjectInput.java 1.12 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.io; /** * ObjectInput extends the DataInput interface to include the reading of * objects. DataInput includes methods for the input of primitive types, * ObjectInput extends that interface to include objects, arrays, and Strings. * * @author unascribed * @version 1.12, 12/10/01 * @see java.io.InputStream * @see java.io.ObjectOutputStream * @see java.io.ObjectInputStream * @since JDK1.1 */ public interface ObjectInput extends DataInput { /** * Read and return an object. The class that implements this interface * defines where the object is "read" from. * * @exception java.lang.ClassNotFoundException If the class of a serialized * object cannot be found. * @exception IOException If any of the usual Input/Output * related exceptions occur. * @since JDK1.1 */ public Object readObject() throws ClassNotFoundException, IOException; /** * Reads a byte of data. This method will block if no input is * available. * @return the byte read, or -1 if the end of the * stream is reached. * @exception IOException If an I/O error has occurred. * @since JDK1.1 */ public int read() throws IOException; /** * Reads into an array of bytes. This method will * block until some input is available. * @param b the buffer into which the data is read * @return the actual number of bytes read, -1 is * returned when the end of the stream is reached. * @exception IOException If an I/O error has occurred. * @since JDK1.1 */ public int read(byte b[]) throws IOException; /** * Reads into an array of bytes. This method will * block until some input is available. * @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 actual number of bytes read, -1 is * returned when the end of the stream is reached. * @exception IOException If an I/O error has occurred. * @since JDK1.1 */ public int read(byte b[], int off, int len) throws IOException; /** * Skips n bytes of input. * @param n the number of bytes to be skipped * @return the actual number of bytes skipped. * @exception IOException If an I/O error has occurred. * @since JDK1.1 */ public long skip(long n) throws IOException; /** * Returns the number of bytes that can be read * without blocking. * @return the number of available bytes. * @since JDK1.1 */ public int available() throws IOException; /** * Closes the input stream. Must be called * to release any resources associated with * the stream. * @exception IOException If an I/O error has occurred. * @since JDK1.1 */ public void close() throws IOException; }
⏎ java/io/ObjectInput.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 39577👍, 0💬
Popular Posts:
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...
What Is commons-lang3-3.1.jar? commons-lang3-3.1.jar is the JAR file for Apache Commons Lang 3.1, wh...
The goal of the Geronimo project is to produce a server runtime framework that pulls together the be...
JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module. JDK 11 Hotspot Agent...