当前位置: 首页>>代码示例>>Java>>正文


Java Util.components方法代码示例

本文整理汇总了Java中org.jgroups.util.Util.components方法的典型用法代码示例。如果您正苦于以下问题:Java Util.components方法的具体用法?Java Util.components怎么用?Java Util.components使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.jgroups.util.Util的用法示例。


在下文中一共展示了Util.components方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: isChildOf

import org.jgroups.util.Util; //导入方法依赖的package包/类
/**
 * Verifies whether child is a child (dir or file) of parent
 * @param parent
 * @param child
 * @return True if child is a child, false otherwise
 */
protected static boolean isChildOf(String parent, String child) {
    if(parent == null || child == null)
        return false;
    if(!child.startsWith(parent))
        return false;
    if(child.length() <= parent.length())
        return false;
    int from=parent.equals(File.separator)? parent.length() : parent.length() +1;
    //  if(from-1 > child.length())
        // return false;
    String[] comps=Util.components(child.substring(from), File.separator);
    return comps != null && comps.length <= 1;
}
 
开发者ID:zjumty,项目名称:jgroups-3.6.4-fixed,代码行数:20,代码来源:GridFile.java

示例2: checkParentDirs

import org.jgroups.util.Util; //导入方法依赖的package包/类
/**
 * Checks whether the parent directories are present (and are directories). If create_if_absent is true,
 * creates missing dirs
 * @param path
 * @param create_if_absent
 * @return
 */
protected boolean checkParentDirs(String path, boolean create_if_absent) throws IOException {
    String[] components=Util.components(path, File.separator);
    if(components == null)
        return false;
    if(components.length == 1) // no parent directories to create, e.g. "data.txt"
        return true;

    StringBuilder sb=new StringBuilder();
    boolean first=true;

    for(int i=0; i < components.length-1; i++) {
        String tmp=components[i];
        if(!tmp.equals(File.separator)) {
            if(first)
                first=false;
            else
                sb.append(File.separator);
        }
        sb.append(tmp);
        String comp=sb.toString();
        if(exists(comp)) {
            if(isFile(comp))
                throw new IOException("cannot create " + path + " as component " + comp + " is a file");
        }
        else {
            if(create_if_absent)
                cache.put(comp, new Metadata(0, System.currentTimeMillis(), chunk_size, Metadata.DIR), (short)-1, 0);
            else
                return false;
        }
    }
    return true;
}
 
开发者ID:zjumty,项目名称:jgroups-3.6.4-fixed,代码行数:41,代码来源:GridFile.java

示例3: trim

import org.jgroups.util.Util; //导入方法依赖的package包/类
protected static String trim(String str) {
    if(str == null) return null;
    str=str.trim();
    if(str.equals(File.separator))
        return str;
    String[] comps=Util.components(str, File.separator);
    return comps != null && comps.length > 0? comps[comps.length-1] : null;
}
 
开发者ID:zjumty,项目名称:jgroups-3.6.4-fixed,代码行数:9,代码来源:GridFile.java

示例4: filename

import org.jgroups.util.Util; //导入方法依赖的package包/类
protected static String filename(String full_path) {
    String[] comps=Util.components(full_path, File.separator);
    return comps != null? comps[comps.length -1] : null;
}
 
开发者ID:zjumty,项目名称:jgroups-3.6.4-fixed,代码行数:5,代码来源:GridFile.java


注:本文中的org.jgroups.util.Util.components方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。