Java 网络编程(七)URL

URL:

https://www.baidu.com/

协议://ip地址:端口/项目名/资源

 

统一资源定位符:定位资源的,定位互联网上的某一个资源

DNS域名解析 www.baidu.com

 

public class URLDemo01 {
    public static void main(String[] args) throws Exception{
        URL url = new URL("http://localhost:8080/helloworld/index.jsp?username=xiaolei&password=123");
        System.out.println(url.getProtocol());//协议
        System.out.println(url.getHost());//主机ip
        System.out.println(url.getPort());//端口
        System.out.println(url.getPath());//文件
        System.out.println(url.getFile());//全路径
        System.out.println(url.getQuery());//参数
    }
}

  

 

posted on 2022-11-23 10:44  键盘敲烂的朱  阅读(26)  评论(0编辑  收藏  举报