com.alibaba.citrus.util.FileUtil.resolve()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(2.2k)|赞(0)|评价(0)|浏览(118)

本文整理了Java中com.alibaba.citrus.util.FileUtil.resolve()方法的一些代码示例,展示了FileUtil.resolve()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。FileUtil.resolve()方法的具体详情如下:
包路径:com.alibaba.citrus.util.FileUtil
类名称:FileUtil
方法名:resolve

FileUtil.resolve介绍

[英]根据指定url和相对路径,计算出相对路径所对应的完整url。类似于URI.resolve() 方法,然后后者不能正确处理jar类型的URL。
[中]根据指定网址和相对路径,计算出相对路径所对应的完整网址类似于URI.resolve() 方法,然后后者不能正确处理罐子类型的网址

代码示例

代码示例来源:origin: webx/citrus

/** 根据指定的相对于当前source的路径,取得input source。 */
InputSource getRelative(String relativePath) throws Exception {
  relativePath = trimToNull(relativePath);
  if (relativePath != null) {
    String sourceURI = null;
    if (source instanceof File) {
      sourceURI = ((File) source).toURI().toString();
    } else if (source instanceof URL) {
      sourceURI = ((URL) source).toExternalForm();
    }
    if (sourceURI != null) {
      return new InputSource(new URL(FileUtil.resolve(sourceURI, relativePath)));
    }
  }
  return null;
}

代码示例来源:origin: webx/citrus

/** 根据指定的相对于当前source的路径,取得input source。 */
InputSource getRelative(String relativePath) throws Exception {
  relativePath = trimToNull(relativePath);
  if (relativePath != null) {
    String sourceURI = null;
    if (source instanceof File) {
      sourceURI = ((File) source).toURI().toString();
    } else if (source instanceof URL) {
      sourceURI = ((URL) source).toExternalForm();
    }
    if (sourceURI != null) {
      return new InputSource(new URL(FileUtil.resolve(sourceURI, relativePath)));
    }
  }
  return null;
}

代码示例来源:origin: webx/citrus

/** 根据指定的相对于当前source的路径,取得input source。 */
InputSource getRelative(String relativePath) throws Exception {
  relativePath = trimToNull(relativePath);
  if (relativePath != null) {
    String sourceURI = null;
    if (source instanceof File) {
      sourceURI = ((File) source).toURI().toString();
    } else if (source instanceof URL) {
      sourceURI = ((URL) source).toExternalForm();
    }
    if (sourceURI != null) {
      return new InputSource(new URL(FileUtil.resolve(sourceURI, relativePath)));
    }
  }
  return null;
}

代码示例来源:origin: com.alibaba.citrus/citrus-webx-all

/** 根据指定的相对于当前source的路径,取得input source。 */
InputSource getRelative(String relativePath) throws Exception {
  relativePath = trimToNull(relativePath);
  if (relativePath != null) {
    String sourceURI = null;
    if (source instanceof File) {
      sourceURI = ((File) source).toURI().toString();
    } else if (source instanceof URL) {
      sourceURI = ((URL) source).toExternalForm();
    }
    if (sourceURI != null) {
      return new InputSource(new URL(FileUtil.resolve(sourceURI, relativePath)));
    }
  }
  return null;
}

相关文章