Java URL处理
URL(Uniform Resource Locator)中文名为统一资源定位符,有时也被俗称为网页地址。表示为互联网上的资源,如网页或者FTP地址。
本章节我们将介绍Java是如处理URL的。URL可以分为如下几个部分。
protocol://host:port/path?query#ref
protocols(协议)可以是 HTTP, HTTPS, FTP, 和File。port 为端口号。path为文件路径及文件名。
HTTP协议的URL实例如下:
http://www.2xkt.com/index.html?language=cn#j2se
以上URL实例并未指定端口,因为HTTP协议默认的端口号为80。
URL 类方法
在java.net包中定义了URL类,该类用来处理有关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.2xkt.com/index.html?language=cn#j2se");
System.out.println("URL is " + url.toString());
System.out.println("protocol is " + url.getProtocol());
System.out.println("authority is " + url.getAuthority());
System.out.println("file name is " + url.getFile());
System.out.println("host is " + url.getHost());
System.out.println("path is " + url.getPath());
System.out.println("port is " + url.getPort());
System.out.println("default port is " + url.getDefaultPort());
System.out.println("query is " + url.getQuery());
System.out.println("ref is " + url.getRef());
}catch(IOException e)
{
e.printStackTrace();
}
}}
以上实例编译运行结果如下:
URL is //www.2xkt.com/index.html?language=cn#j2seprotocol is httpauthority is www.2xkt.comfile name is /index.htm?language=cnhost is www.2xkt.compath is /index.htmlport is -1default port is 80query is language=cnref is j2se