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/FilterWriter.java
/* * @(#)FilterWriter.java 1.7 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.io; /** * Abstract class for writing filtered character streams. * * @version 1.7, 01/12/10 * @author Mark Reinhold * @since JDK1.1 */ public abstract class FilterWriter extends Writer { /** * The underlying character-output stream. */ protected Writer out; /** * Create a new filtered writer. */ protected FilterWriter(Writer out) { super(out); this.out = out; } /** * Write a single character. * * @exception IOException If an I/O error occurs */ public void write(int c) throws IOException { out.write(c); } /** * Write a portion of an array of characters. * * @param cbuf Buffer of characters to be written * @param off Offset from which to start reading characters * @param len Number of characters to be written * * @exception IOException If an I/O error occurs */ public void write(char cbuf[], int off, int len) throws IOException { out.write(cbuf, off, len); } /** * Write a portion of a string. * * @param str String to be written * @param off Offset from which to start reading characters * @param len Number of characters to be written * * @exception IOException If an I/O error occurs */ public void write(String str, int off, int len) throws IOException { out.write(str, off, len); } /** * Flush the stream. * * @exception IOException If an I/O error occurs */ public void flush() throws IOException { out.flush(); } /** * Close the stream. * * @exception IOException If an I/O error occurs */ public void close() throws IOException { out.close(); } }
⏎ java/io/FilterWriter.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 38387👍, 0💬
Popular Posts:
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java...
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
How to merge two JAR files with "jar" commands? I am tired of specifying multiple JAR files in the c...
How to download and install mysql-connector-java-5.1 .40.zip?Connector/J Java library is a JDBC Driv...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...