Sorry 4 replying late....
Cindy i have WinZip installed in my machine.
Marilyn when i open c:\jd1.3\srs\java\io>in this directory i open
ByteArrayOutputStream(in property it's File Type is Java Source)
i got some thing like this...
/*
* @(#)ByteArrayOutputStream.java1.43 00/02/02
*
* Copyright 1994-2000 Sun Microsystems, Inc. All Rights Reserved.
*
* This software is the proprietary information of Sun Microsystems, Inc.
* Use is subject to license terms.
*
*/
package java.io;
/**
* This class implements an output stream in which the data is
* written into a byte array. The buffer automatically grows as data
* is written to it.
* The data can be retrieved using <code>toByteArray()</code> and
* <code>toString()</code>.
*
* @author Arthur van Hoff
* @version 1.43, 02/02/00
* @since JDK1.0
*/
public class ByteArrayOutputStream extends OutputStream {
/**
* The buffer where data is stored.
*/
protected byte buf[];
/**
* The number of valid bytes in the buffer.
*/
protected int count;
/**
* Flag indicating whether the stream has been closed.
*/
........................ETC.....................................
Still unable to open source code
Regards,
Hassan