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/net/ContentHandler.java
/* * @(#)ContentHandler.java 1.9 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.net; import java.io.IOException; /** * The abstract class <code>ContentHandler</code> is the superclass * of all classes that read an <code>Object</code> from a * <code>URLConnection</code>. * <p> * An application does not generally call the * <code>getContent</code> method in this class directly. Instead, an * application calls the <code>getContent</code> method in class * <code>URL</code> or in <code>URLConnection</code>. * The application's content handler factory (an instance of a class that * implements the interface <code>ContentHandlerFactory</code> set * up by a call to <code>setContentHandler</code>) is * called with a <code>String</code> giving the MIME type of the * object being received on the socket. The factory returns an * instance of a subclass of <code>ContentHandler</code>, and its * <code>getContent</code> method is called to create the object. * * @author James Gosling * @version 1.9, 12/10/01 * @see java.net.ContentHandler#getContent(java.net.URLConnection) * @see java.net.ContentHandlerFactory * @see java.net.URL#getContent() * @see java.net.URLConnection * @see java.net.URLConnection#getContent() * @see java.net.URLConnection#setContentHandlerFactory(java.net.ContentHandlerFactory) * @since JDK1.0 */ abstract public class ContentHandler { /** * Given a URL connect stream positioned at the beginning of the * representation of an object, this method reads that stream and * creates an object from it. * * @param urlc a URL connection. * @return the object read by the <code>ContentHandler</code>. * @exception IOException if an I/O error occurs while reading the object. * @since JDK1.0 */ abstract public Object getContent(URLConnection urlc) throws IOException; }
⏎ java/net/ContentHandler.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38059👍, 0💬
Popular Posts:
Guava is a suite of core and expanded libraries that include utility classes, google's collections, ...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...
What Is mail.jar of JavaMail 1.4.1? I got the JAR file from javamail-1_4_1.zip. mail.jar in javamail...
What Is ojdbc14.jar for Oracle 10g R2? ojdbc14.jar for Oracle 10g R2 is the JAR files of ojdbc.jar, ...
The Commons DbUtils library is a small set of classes designed to make working with JDBC easier. JDB...