本文整理汇总了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;
}
}
示例2: urlToOsPath
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
@NotNull
public static String urlToOsPath(@NotNull String url) {
return FileUtilRt.toSystemDependentName(urlToPath(url));
}
示例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);
}
示例4: actionPerformed
import com.intellij.openapi.util.io.FileUtilRt; //导入方法依赖的package包/类
public void actionPerformed() {
FileUtilRt.toSystemDependentName("myPath");
}