62,627
社区成员
发帖
与我相关
我的任务
分享
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);
}
}