62,635
社区成员




public abstract class URLConnection
{
public InputStream getInputStream()
throws IOException
{
throw new UnknownServiceException("protocol doesn't support input");
}
}
public abstract class InputStream
implements Closeable
{
public InputStream()
{
}
public abstract int read()
throws IOException;
public int read(byte abyte0[])
throws IOException
{
return read(abyte0, 0, abyte0.length);
}
}