URL类

  • URL(Uniform Resource Locator):统一资源定位符,它表示 Internet 上某一资源的地址。
  • 它是一种具体的URI,即URL可以用来标识一个资源,而且还指明了如何locate这个资源。
  • 通过 URL 我们可以访问 Internet 上的各种网络资源,比如最常见的 www,ftp 站点。浏览器通过解析给定的 URL 可以在网络上查找相应的文件或其他资源。
  • URL的基本结构由5部分组成:

<传输协议>://<主机名>:<端口号>/<文件名>#片段名?参数列表
例如:
http://192.168.1.100:8080/helloworld/index.jsp#a?username=shkstart&password=123

  • 片段名:即锚点,例如看小说,直接定位到章节
  • 参数列表格式:参数名=参数值&参数名=参数值….

URL类构造器

public URL (String spec):通过一个表示URL地址的字符串可以构造一个URL对象。
例如:URL url = new URL (“http://www. baidu.com/“);
public URL(URL context, String spec):通过基 URL 和相对 URL 构造一个 URL 对象。
例如:URL downloadUrl = new URL(url, “download.html”)
public URL(String protocol, String host, String file);
例如:new URL(“http”, “www.baidu.com”, “download. html”);
public URL(String protocol, String host, int port, String file);
例如: URL gamelan = new URL(“http”, “www.baidu.com”, 80, “download.html”);

常用方法

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


URLConnection类

  • URL的方法 openStream():能从网络上读取数据
  • 若希望输出数据,例如向服务器端的 CGI (公共网关接口-Common Gateway Interface-的简称,是用户浏览器和服务器端的应用程序进行连接的接口)程序发送一些数据,则必须先与URL建立连接,然后才能对其进行读写,此时需要使用URLConnection 。
  • URLConnection:表示到URL所引用的远程对象的连接。当与一个URL建立连接时,首先要在一个 URL 对象上通过方法 openConnection() 生成对应的 URLConnection对象。如果连接过程失败,将产生IOException.

URL netchinaren = new URL (“http://www.baidu.com/index.shtml”);;)
URLConnectonn u = netchinaren.openConnection( );

  • 通过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


  1. public static void main(String[] args) {
  2. HttpURLConnection urlConnection = null;
  3. InputStream is = null;
  4. FileOutputStream fos = null;
  5. try {
  6. URL url = new URL("http://localhost:8080/examples/beauty.jpg");
  7. urlConnection = (HttpURLConnection) url.openConnection();
  8. urlConnection.connect();
  9. is = urlConnection.getInputStream();
  10. fos = new FileOutputStream("day10\\beauty3.jpg");
  11. byte[] buffer = new byte[1024];
  12. int len;
  13. while((len = is.read(buffer)) != -1){
  14. fos.write(buffer,0,len);
  15. }
  16. System.out.println("下载完成");
  17. } catch (IOException e) {
  18. e.printStackTrace();
  19. } finally {
  20. //关闭资源
  21. if(is != null){
  22. try {
  23. is.close();
  24. } catch (IOException e) {
  25. e.printStackTrace();
  26. }
  27. }
  28. if(fos != null){
  29. try {
  30. fos.close();
  31. } catch (IOException e) {
  32. e.printStackTrace();
  33. }
  34. }
  35. if(urlConnection != null){
  36. urlConnection.disconnect();
  37. }
  38. }
  39. }

image.png