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 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/Externalizable.java
/* * @(#)Externalizable.java 1.8 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.io; import java.io.ObjectOutput; import java.io.ObjectInput; /** * Externalization allows a class to specify the methods to be used to * write the object's contents to a stream and to read them back. The * Externalizable interface's writeExternal and readExternal methods * are implemented by a class to * give the class complete control over the format and contents of the * stream for an object and its supertypes. These methods must explicitly * coordinate with the supertype to save its state. <br> * * Object Serialization uses the Serializable and Externalizable * interfaces. Object persistence mechanisms may use them also. Each * object to be stored is tested for the Externalizable interface. If * the object supports it, the writeExternal method is called. If the * object does not support Externalizable and does implement * Serializable the object should be saved using * ObjectOutputStream. <br> When an Externalizable object is to be * reconstructed, an instance is created using the public no-arg * constructor and the readExternal method called. Serializable * objects are restored by reading them from an ObjectInputStream. * * @author unascribed * @version 1.8, 12/10/01 * @see java.io.ObjectOutputStream * @see java.io.ObjectInputStream * @see java.io.ObjectOutput * @see java.io.ObjectInput * @see java.io.Serializable * @since JDK1.1 */ public interface Externalizable extends java.io.Serializable { /** * The object implements the writeExternal method to save its contents * by calling the methods of DataOutput for its primitive values or * calling the writeObject method of ObjectOutput for objects, strings * and arrays. * @exception IOException Includes any I/O exceptions that may occur * @since JDK1.1 */ void writeExternal(ObjectOutput out) throws IOException; /** * The object implements the readExternal method to restore its * contents by calling the methods of DataInput for primitive * types and readObject for objects, strings and arrays. The * readExternal method must read the values in the same sequence * and with the same types as were written by writeExternal. * @exception ClassNotFoundException If the class for an object being * restored cannot be found. * @since JDK1.1 */ void readExternal(ObjectInput in) throws IOException, ClassNotFoundException; }
⏎ java/io/Externalizable.java
Or download all of them as a single archive file:
File name: jdk-1.1.8-src.zip File size: 1574187 bytes Release date: 2018-11-16 Download
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 176049👍, 0💬
Popular Posts:
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
JDK 11 jdk.internal.JVM Stat.jmod is the JMOD file for JDK 11 Internal Jvmstat module. JDK 11 Intern...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...