Java URL 处理

URL ( Uniform Resource Locator ) 中文名为统一资源定位符,有时也被俗称为网页地址

URL 用于表示为互联网上的资源,如网页或者 FTP 地址

URL 可以分为如下几个部分

protocol://host:port/path?query#fragment
  1. protocol(协议) 可以是 HTTP、HTTPS、FTP 和 File
  2. port 为端口号
  3. path 为文件路径及文件名

比如,一个 HTTP 协议的 URL 可能如下

https://www.twle.cn/index.html?language=cn#j2se

那么

  1. 协议为(protocol): http
  2. 主机为(host:port) :www.twle.cn
  3. 端口号为(port): 80 ,这个 URL 并未指定端口,因为 HTTP 协议默认的端口号为 80
  4. 文件路径为(path): /index.html
  5. 请求参数(query) :language=cn
  6. 定位位置(fragment): j2se,定位到网页中 id 属性为 j2se 的 HTML 元素位置

Java URL 类

java.net 包中定义了 URL 类,该类用来处理有关 URL 的内容

java.net.URL 类提供了丰富的 URL 构建方式,并可以通过 java.net.URL 来获取资源

方法描述
public URL(String protocol, String host, int port, String file) throws MalformedURLException
通过给定的参数(协议、主机名、端口号、文件名)创建URL
public URL(String protocol, String host, String file) throws MalformedURLException
使用指定的协议、主机名、文件名创建URL,端口使用协议的默认端口
public URL(String url) throws MalformedURLException
通过给定的URL字符串创建URL
public URL(URL context, String url) throws MalformedURLException
使用基地址和相对URL创建

URL 类中包含了很多方法用于访问 URL 的各个部分

方法 描述
public String getPath() 返回URL路径部分
public String getQuery() 返回URL查询部分
public String getAuthority() 获取此 URL 的授权部分
public int getPort() 返回 URL 端口部分
public int getDefaultPort() 返回协议的默认端口号
public String getProtocol() 返回 URL 的协议
public String getHost() 返回 URL 的主机
public String getFile() 返回 URL 文件名部分
public String getRef() 获取此 URL 的锚点 ( 也称为"引用" )
public URLConnection openConnection() throws IOException 打开一个 URL 连接,并运行客户端访问资源

下面的范例使用 java.net.URL 类来获取 URL 的各个部分参数

URLDemo.java

import java.net.*;
import java.io.*;

public class URLDemo
{
   public static void main(String [] args)
   {
      try
      {
         URL url = new URL("http://www.twle.cn/index.html?language=cn#j2se");
         System.out.println("URL 为:" + url.toString());
         System.out.println("协议为:" + url.getProtocol());
         System.out.println("验证信息:" + url.getAuthority());
         System.out.println("文件名及请求参数:" + url.getFile());
         System.out.println("主机名:" + url.getHost());
         System.out.println("路径:" + url.getPath());
         System.out.println("端口:" + url.getPort());
         System.out.println("默认端口:" + url.getDefaultPort());
         System.out.println("请求参数:" + url.getQuery());
         System.out.println("定位位置:" + url.getRef());
      }catch(IOException e)
      {
         e.printStackTrace();
      }
   }
}

编译运行以上 Java 代码,输出结果如下

URL 为:http://www.twle.cn/index.html?language=cn#j2se
协议为:http
验证信息:www.twle.cn
文件名及请求参数:/index.html?language=cn
主机名:www.twle.cn
路径:/index.html
端口:-1
默认端口:80
请求参数:language=cn
定位位置:j2se

URLConnections 类

URL 类的 openConnection() 会返回一个 java.net.URLConnection

  1. 如果连接 HTTP 协议的 URL, openConnection() 方法返回 HttpURLConnection 对象
  2. 如果连接的 URL 为一个 JAR 文件, openConnection() 方法将返回 JarURLConnection 对象

... 以此类推

URLConnection 类提供了下表的常用方法

方法描述
Object getContent()
检索 URL 链接内容
Object getContent(Class[] classes)
检索URL链接内容
String getContentEncoding()
返回头部 content-encoding 字段值
int getContentLength()
返回头部 content-length字段值
String getContentType()
返回头部 content-type 字段值
int getLastModified()
返回头部 last-modified 字段值
long getExpiration()
返回头部 expires 字段值
long getIfModifiedSince()
返回对象的 ifModifiedSince 字段值
public void setDoInput(boolean input)
URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输入,则将 DoInput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 true
public void setDoOutput(boolean output)
URL 连接可用于输入和/或输出。如果打算使用 URL 连接进行输出,则将 DoOutput 标志设置为 true;如果不打算使用,则设置为 false。默认值为 false
public InputStream getInputStream() throws IOException
返回URL的输入流,用于读取资源
public OutputStream getOutputStream() throws IOException
返回URL的输出流, 用于写入资源
public URL getURL()
返回 URLConnection 对象连接的 URL

下面的范例中 URL 采用了 HTTP 协议。 openConnection 返回 HttpURLConnection 对象

URLConnDemo.java

import java.net.*;
import java.io.*;
public class URLConnDemo
{
   public static void main(String [] args)
   {
      try
      {
         URL url = new URL("http://www.twle.cn");
         URLConnection urlConnection = url.openConnection();
         HttpURLConnection connection = null;
         if(urlConnection instanceof HttpURLConnection)
         {
            connection = (HttpURLConnection) urlConnection;
         }
         else
         {
            System.out.println("请输入 URL 地址");
            return;
         }
         BufferedReader in = new BufferedReader(
         new InputStreamReader(connection.getInputStream()));
         String urlString = "";
         String current;
         while((current = in.readLine()) != null)
         {
            urlString += current;
         }
         System.out.println(urlString);
      }catch(IOException e)
      {
         e.printStackTrace();
      }
   }
}

编译运行以上 Java 代码,输出结果如下

$ javac URLConnDemo.java 
$ java URLConnDemo
.....这里会输出简单编程首页(https://www.twle.cn)的 HTML 内容.....

Java 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.