创建URL对象的方法
在前面的例子中我们统一使用new URL(url字符串)的形式创建URL对象。其实,Java提供了四种创建URL对象的形式: 1.new URL(url字符串) 本文中的程序均采用此种格式,如:
new URL("http://www.shu.edu.cn/~xyx/doc/manhua.html") |
String url = "http://www.shu.edu.cn/~xyx/img/shnet.jpg"; image = getImage(new URL(url));部分可改为: image = getImage(new URL("http","www.shu.edu.cn","/~xyx /img/shnet.jpg")); |
new URL("http","www.shu.edu.cn",80, "/~xyx/doc/manhua.html") |