博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一个简单的拆分URL的小程序
阅读量:6803 次
发布时间:2019-06-26

本文共 849 字,大约阅读时间需要 2 分钟。

hot3.png

package com.test;

public class SplitUrl {  

      
    public static void main(String[] args) {  
        read("http://localhost:8888/esb/server");
    }  
    
    /**
     * 拆分URL
     * url
     */
    public static void read(String url){  
        //String url="http://www.baidu.com:8080/index.jsp";  
        //String url2="ftp://baidu.com/pub/index.jsp";  
        int firSplit=url.indexOf("//");  
        String proto=url.substring(0, firSplit+2);  
        int webSplit=url.indexOf("/", firSplit+2);  
        int portIndex=url.indexOf(":",firSplit);  
        String webUrl=url.substring(firSplit+2, webSplit);  
        String port= "";  
        if(portIndex >= 0){  
            webUrl=webUrl.substring(0, webUrl.indexOf(":"));  
            port=url.substring(portIndex+1, webSplit);  
            System.out.println("端口:"+port);  
        }  
        String context=url.substring(webSplit);  
        System.out.println("协议:"+proto);  
        System.out.println("网址:"+webUrl);  
        System.out.println("内容:"+context);  
    }  
 
}  

 

转载于:https://my.oschina.net/yzbty32/blog/745797

你可能感兴趣的文章
VS中基于对话框的MFC利用换肤改变边框颜色及格式
查看>>
CSS3 Transitions
查看>>
[BZOJ1501/NOI2005]智慧珠游戏
查看>>
IO模型总结
查看>>
实战 Spring MVC接入支付宝即时到账 (部分代码)
查看>>
随想系列_5_乱七八糟
查看>>
PUTTY用密钥登陆服务器
查看>>
并发编程总结3——JUC-LOCK-1
查看>>
np.random.choice方法
查看>>
第一篇
查看>>
洛谷P4721 【模板】分治 FFT(分治FFT)
查看>>
BI技术
查看>>
检查hdfs块的块-fsck
查看>>
Asp程序的IIS发布
查看>>
设计模式4-代理模式
查看>>
php7扩展开发[8]类方法之间的调用
查看>>
通过C语言HelloWord程序对计算系统理解
查看>>
vue之better-scroll的封装,包含下拉刷新,上拉加载功能及UI(核心为借鉴,我仅仅是给轮子套上了外胎...)...
查看>>
HTML基础-------最初概念以及相关语法
查看>>
如何理解代理?
查看>>