home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-08-05 | 274 b | 12 lines |
- import java.net.URL;
- import java.io.IOException;
- import netscape.net.URLInputStream;
- import netscape.net.URLConnection;
-
- public class BOURLInputStream extends URLInputStream {
- public BOURLInputStream(URLConnection uc) throws IOException {
- super(uc);
- open();
- }
- }
-