码迷,mamicode.com
首页 > 编程语言 > 详细

java.net.Url类的应用(网络编程)

时间:2014-09-30 20:11:00      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   使用   ar   java   

一、认识URL

    类 URL 代表一个统一资源定位符,它是指向互联网“资源”的指针。资源可以是简单的文件或目录,也可以是更为复杂的对象的引用,例如对数据库或搜索引擎的查询。

    简单的可以把URL理解为包含:协议、主机名、端口、路径、查询字符串和参数等对象。每一段可以独立设置。

    应用程序也可以指定一个“相对 URL”,它只包含到达相对于另一个 URL 的资源的足够信息。HTML 页面中经常使用相对 URL.

    相对 URL 不需要指定 URL 的所有组成部分。如果缺少协议、主机名称或端口号,这些值将从完整指定的 URL 中继承。

    由于 URL 不懂 URL 转义,所以它不会识别同一 URL 的对等编码和解码形式。

    注意,URI 类在某些特定情况下对其组成字段执行转义。建议使用 URI 管理 URL 的编码和解码,并使用 toURI() 和 URI.toURL() 实现这两个类之间的转换。

    也可以使用 URLEncoder 和 URLDecoder 类,但是只适用于 HTML 形式的编码,它与 RFC2396 中定义的编码机制不同。

    (以上介绍来自Java API doc)

    二、URL对象的构建

    方式很多,可以看看API文档。

    三、获取URL指定的资源

    下面给个例子,说明如何获取到指定的资源。

Java代码  

  1. import java.io.*;        

  2. import java.net.URL;        

  3. import java.net.URLConnection;        

  4.       

  5. public class TestURL {        

  6.         public static void main(String[] args) throws IOException {        

  7.                 test4();        

  8.                 test3();        

  9.                 test2();        

  10.                 test();        

  11.         }        

  12.       

  13.         /**      

  14.          * 获取URL指定的资源。      

  15.          *      

  16.          * @throws IOException      

  17.          */        

  18.         public static void test4() throws IOException {        

  19.                 URL url = new URL("http://lavasoft.blog.51cto.com/attachment/200811/200811271227767778082.jpg");        

  20.                 //获得此 URL 的内容。        

  21.                 Object obj = url.getContent();        

  22.                 System.out.println(obj.getClass().getName());        

  23.         }        

  24.       

  25.         /**      

  26.          * 获取URL指定的资源      

  27.          *      

  28.          * @throws IOException      

  29.          */        

  30.         public static void test3() throws IOException {        

  31.                 URL url = new URL("http://www.hrtsea.com/down/soft/45.htm");        

  32.                 //返回一个 URLConnection 对象,它表示到 URL 所引用的远程对象的连接。        

  33.                 URLConnection uc = url.openConnection();        

  34.                 //打开的连接读取的输入流。        

  35.                 InputStream in = uc.getInputStream();        

  36.                 int c;        

  37.                 while ((c = in.read()) != -1)        

  38.                         System.out.print(c);        

  39.                 in.close();        

  40.         }        

  41.       

  42.         /**      

  43.          * 读取URL指定的网页内容      

  44.          *      

  45.          * @throws IOException      

  46.          */        

  47.         public static void test2() throws IOException {        

  48.                 URL url = new URL("http://www.hrtsea.com/down/soft/45.htm");        

  49.                 //打开到此 URL 的连接并返回一个用于从该连接读入的 InputStream。        

  50.                 Reader reader = new InputStreamReader(new BufferedInputStream(url.openStream()));        

  51.                 int c;        

  52.                 while ((c = reader.read()) != -1) {        

  53.                         System.out.print((char) c);        

  54.                 }        

  55.                 reader.close();        

  56.         }        

  57.       

  58.         /**      

  59.          * 获取URL的输入流,并输出      

  60.          *      

  61.          * @throws IOException      

  62.          */        

  63.         public static void test() throws IOException {        

  64.                 URL url = new URL("http://lavasoft.blog.51cto.com/62575/120430");        

  65.                 //打开到此 URL 的连接并返回一个用于从该连接读入的 InputStream。        

  66.                 InputStream in = url.openStream();        

  67.                 int c;        

  68.                 while ((c = in.read()) != -1)        

  69.                         System.out.print(c);        

  70.                 in.close();        

  71.         }        

  72. }          

   四、Java所支持的URL类型

Java代码

  1. import java.net.URL;        

  2.       

  3. public class MainClass {        

  4.       

  5.         public static void main(String[] args) {        

  6.       

  7.                 String host = "www.java2s.com";        

  8.                 String file = "/index.html";        

  9.       

  10.                 String[] schemes = {"http""https""ftp""mailto""telnet""file""ldap""gopher",        

  11.                                 "jdbc""rmi""jndi""jar""doc""netdoc""nfs""verbatim""finger""daytime",        

  12.                                 "systemresource"};        

  13.       

  14.                 for (int i = 0; i < schemes.length; i++) {        

  15.                         try {        

  16.                                 URL u = new URL(schemes, host, file);        

  17.                                 System.out.println(schemes + " is supported/r/n");        

  18.                         } catch (Exception ex) {        

  19.                                 System.out.println(schemes + " is not supported/r/n");        

  20.                         }        

  21.                 }        

  22.         }        

  23. }       


java.net.Url类的应用(网络编程)

标签:style   blog   http   color   io   os   使用   ar   java   

原文地址:http://my.oschina.net/u/1453975/blog/323546

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!