您好,登錄后才能下訂單哦!
URL:統一資源定位器
協議
域名、計算機名
端口:默認80
資源(#為錨點)
http://www.baidu.com:80/index.html?uname=shsxt&age=18#a
public class http {
public static void main(String[]args) throws MalformedURLException
{
URL url =new URL("http://www.baidu.com:80/index.html?uname=shsxt&age=18#a");
//獲取四個值
System.out.println("協議:"+url.getProtocol());
System.out.println("域名/ip:"+url.getHost());
System.out.println("端口:"+url.getPort());
System.out.println("請求資源:"+url.getFile());
System.out.println("請求資源:"+url.getPath());
//參數
System.out.println("參數:"+url.getQuery());
//錨點
System.out.println("錨點:"+url.getRef());
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。