14-7 网络编程 ---- URL编程(1)概述

14-7 网络编程 ---- URL编程(1)概述

一、URL类
1.URL(Uniform Resource Locator):统一资源定位符,它表示 Internet 上某一资源的地址。
2.它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何locate这个资源。
3.通过 URL 我们可以访问 Internet 上的各种网络资源,比如最常见的 www,ftp 站点。浏览器通过解析给定的 URL 可以在网络上查找相应的文件或其他资源。
4.URL的基本结构由5部分组成:
<传输协议>://<主机名>:<端口号>/<文件名>#片段名?参数列表
(1)例如:
http://192.168.1.100:8080/helloworld/index.jsp#a?username=shkstart&password=123
(2)#片段名:即锚点,例如看小说,直接定位到章节
(3)参数列表格式:参数名=参数值&参数名=参数值…
5.为了表示URL,java.net 中实现了类 URL。我们可以通过下面的构造器来初始化一个 URL 对象:
(1)public URL (String spec):通过一个表示URL地址的字符串可以构造一个URL对象。
例如:URL url = new URL (“http://www. atguigu.com/”);
(2)public URL(URL context, String spec):通过基 URL 和相对 URL 构造一个 URL 对象。
例如:URL downloadUrl = new URL(url, “download.html")
(3)public URL(String protocol, String host, String file); 例如:new URL(“http”, “www.atguigu.com”, “download. html");
(4)public URL(String protocol, String host, int port, String file); 例如: URL gamelan = new URL(“http”, “www.atguigu.com”, 80, “download.html");
6.URL类的构造器都声明抛出非运行时异常,必须要对这一异常进行处理,通常是用 try-catch 语句进行捕获。

7.一个URL对象生成后,其属性是不能被改变的,但可以通过它给定的方法来获取这些属性:

  • public String getProtocol( ) 获取该URL的协议名
  • public String getHost( ) 获取该URL的主机名
  • public String getPort( ) 获取该URL的端口号
  • public String getPath( ) 获取该URL的文件路径
  • public String getFile( ) 获取该URL的文件名
  • public String getQuery( ) 获取该URL的查询名

代码:

package java2;

import java.net.MalformedURLException;
import java.net.URL;

/**
 * URL网络编程
 * 1.URL:统一资源定位符,对应着互联网的某一资源地址
 * 2.格式:
 * http://localhost:8080/examples/beauty.jpg?username=Tom
 * 协议   主机名    端口号  资源地址             参数列表
 */
public class URLTest {
    public static void main(String[] args) {

        try {

            URL url = new URL("http://localhost:8080/examples/beauty.jpg?username=Tom");

//            public String getProtocol(  )     获取该URL的协议名
            System.out.println(url.getProtocol());
//            public String getHost(  )           获取该URL的主机名
            System.out.println(url.getHost());
//            public String getPort(  )            获取该URL的端口号
            System.out.println(url.getPort());
//            public String getPath(  )           获取该URL的文件路径
            System.out.println(url.getPath());
//            public String getFile(  )             获取该URL的文件名
            System.out.println(url.getFile());
//            public String getQuery(   )        获取该URL的查询名
            System.out.println(url.getQuery());


        } catch (MalformedURLException e) {
            e.printStackTrace();
        }

    }


}

输出:

http
localhost
8080
/examples/beauty.jpg
/examples/beauty.jpg?username=Tom
username=Tom

二、针对HTTP协议的URLConnection类
1.URL的方法 openStream():能从网络上读取数据
2.若希望输出数据,例如向服务器端的 CGI (公共网关接口-Common Gateway Interface-的简称,是用户浏览器和服务器端的应用程序进行连接的接口)程序发送一些数据,则必须先与URL建立连接,然后才能对其进行读写,此时需要使用URLConnection 。
3.URLConnection:表示到URL所引用的远程对象的连接。当与一个URL建立连接时,首先要在一个 URL 对象上通过方法 openConnection() 生成对应的 URLConnection对象。如果连接过程失败,将产生IOException。
(1)URL netchinaren = new URL (“http://www.atguigu.com/index.shtml”);
(2)URLConnectonn u = netchinaren.openConnection( );
4.通过URLConnection对象获取的输入流和输出流,即可以与现有的CGI
程序进行交互。

  • public Object getContent( ) throws IOException
  • public int getContentLength( )
  • public String getContentType( )
  • public long getDate( )
  • public long getLastModified( )
  • public InputStream getInputStream( )throws IOException
  • public OutputSteram getOutputStream( )throws IOException

三、URI、URL和URN的区别
1.URI,是uniform resource identifier,统一资源标识符, 用来唯一的标识一个资源。而 URL是uniform resource locator,统一资源定位符,它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何locate这个资源。而URN,uniform resource name,统一资源命名,是通过名字来标识资源,比如mailto:java-net@java.sun.com。也就是说,URI是以一种抽象的,高层次概念定义统一资源标识,而URL和URN则是具体的资源标识的方式。URL和URN都是一种URI。
2.在Java的URI中,一个URI实例可以代表绝对的,也可以是相对的,只要它符合URI的语法规则。而URL类则不仅符合语义,还包含了定位该资源的信息,因此它不能是相对的。
在这里插入图片描述

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

YY鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值