Can anyone tell me if this class is documented somewhere?
I am using java version 1.4.0 on Windows 2000.
Here is the code which tells me of the existence of java.net.SocketInputStream.
/* Testing what type of InputStream a Socket gives me. */
import java.io.*; import java.net.*;
class SocketStreamPeeker{
public static void main(String[] args) throws Exception{
Socket so = new Socket("trijug.org", 80);
InputStream in = so.getInputStream();
Class cl = in.getClass();
System.out.println(cl.getName());
so.close();
}
}Rich Hammer
_______________________________________________ Juglist mailing list [EMAIL PROTECTED] http://trijug.org/mailman/listinfo/juglist_trijug.org
