首页 > 网站 > WEB开发 > 正文

Url 和 HttpURLConnection

2024-04-27 15:13:24
字体:
来源:转载
供稿:网友

URL(Uniform Resource Locator)中文名为统一资源定位符,有时也被俗称为网页地址。表示为互联网上的资源,如网页或者FTP地址。

URL 解析:

协议为(PRotocol):http主机为(host:port):www.runoob.com端口号为(port): 80 ,以上URL实例并未指定端口,因为 HTTP 协议默认的端口号为 80。文件路径为(path):/index.html请求参数(query):language=cn定位位置(fragment):j2se,定位到网页中 id 属性为 j2se 的 HTML 元素位置 。URL url = new URL("http://www.kmzthy.com/zthy/cartype/preSave.do?id=7");        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());

HttpURLConnection是java提供用于支持HTTP协议的网络访问,用它访问一个URL的内容很方便。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表