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


Java FileUtilRt.toSystemDependentName方法代码示例

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


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

示例1: getTemplateIconPath

import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
@Nullable
private File getTemplateIconPath(@Nullable TemplateEntry entry) {
  if (entry == null) {
    return null;
  }
  final Map<String, Parameter> parameterIds = Maps.newHashMap();
  for (Parameter parameter : entry.getParameters()) {
    parameterIds.put(parameter.id, parameter);
  }
  String path = entry.getMetadata().getThumbnailPath(new Function<String, Object>() {
    @Override
    public Object apply(String input) {
      return getStateParameterValue(parameterIds.get(input));
    }
  });
  if (!StringUtil.isEmpty(path)) {
    File file = new File(entry.getTemplateDir(), FileUtilRt.toSystemDependentName(path, '/'));
    return file.isFile() ? file : null;
  }
  else {
    return null;
  }
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:24,代码来源:TemplateParameterStep2.java

示例2: urlToOsPath

import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
@NotNull
public static String urlToOsPath(@NotNull String url) {
  return FileUtilRt.toSystemDependentName(urlToPath(url));
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:JpsPathUtil.java

示例3: toSystemDependentName

import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
@Contract("null -> null; !null -> !null")
public static String toSystemDependentName(@Nullable String path) {
  return path == null ? null : FileUtilRt.toSystemDependentName(path);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:PathUtil.java

示例4: actionPerformed

import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
public void actionPerformed() {
  FileUtilRt.toSystemDependentName("myPath");
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:MyAction.java


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