java 杂七杂八

来源:互联网 发布:淘宝店铺异常,状态码-2 编辑:程序博客网 时间:2024/06/13 23:23

判断字符串中是否含有某一特定字符串的方法(string a中是否包含string b)

string a = "abcd1234abcde";
string b = "1234";
if(a.IndexOf(b)>-1)
{
//字符串A中包含字符串B
}

js获得当前路径:

<script type="text/javascript">
         //js获取项目根路径,如: http://localhost:8083/uimcardprj  
        function getRootPath(){  
        //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp  
        var curWwwPath=window.document.location.href;  
        //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp  
        var pathName=window.document.location.pathname;  
        var pos=curWwwPath.indexOf(pathName);  
        //获取主机地址,如: http://localhost:8083  
        var localhostPaht=curWwwPath.substring(0,pos);  
        //获取带"/"的项目名,如:/uimcardprj  
        var projectName=pathName.substring(0,pathName.substr(1).indexOf('/')+1);  
        return(localhostPaht+projectName);  
    }  
 </script>