一、URL层次。
URL对象的创建。
1、public URL(String spec);
URL urlbase=new URL("http://my.oschina.net/u/2308739/admin/new-blog.html");
2、public URL(URL context,String spec);
URL urlbase=new URL("http://my.oschina.net/u/2308739/admin/");
URL indexUrl=new URL(urlbase,"new-blog.html");
3、public URL(String protocol,String host,String file);
通过协议名、主机名、文件名构造一个URL对象。
new URL("http","http://my.oschina.net","/u/2308739/admin/new-blog.html");
4、public URL(String protocol,String host,int port,String file);
通过协议名、主机名、端口号,文件名构造一个URL对象。
new URL("http","http://my.oschina.net",80,"/u/2308739/admin/new-blog.html");
二、通过URL读取内容
通过URL的openstream()方法,得到Java.io.inputstream类的对象,从该输入流中读取URL地址的内容。
这个方法的定义是:
public final Inputstream openstream() throws IOException;
时间: 2024-11-08 19:00:09