本文整理汇总了Java中java.nio.file.FileSystem.getSeparator方法的典型用法代码示例。如果您正苦于以下问题:Java FileSystem.getSeparator方法的具体用法?Java FileSystem.getSeparator怎么用?Java FileSystem.getSeparator使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.nio.file.FileSystem
的用法示例。
在下文中一共展示了FileSystem.getSeparator方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: buildGlobPattern
import java.nio.file.FileSystem; //导入方法依赖的package包/类
private static String buildGlobPattern(final FileSystem fileSystem, final Path rootPath, final String pattern) {
final String rootPathString;
if (!rootPath.toString().endsWith(fileSystem.getSeparator())) {
rootPathString = rootPath.toString() + fileSystem.getSeparator();
} else {
rootPathString = rootPath.toString();
}
// Escape special backslash character in root path.
return "glob:" + rootPathString.replace("\\", "\\\\") + pattern;
}
示例2: installMockUsableSpaceFS
import java.nio.file.FileSystem; //导入方法依赖的package包/类
@BeforeClass
public static void installMockUsableSpaceFS() throws Exception {
FileSystem current = PathUtils.getDefaultFileSystem();
aPathPart = current.getSeparator() + 'a' + current.getSeparator();
bPathPart = current.getSeparator() + 'b' + current.getSeparator();
FileSystemProvider mock = new MockUsableSpaceFileSystemProvider(current);
PathUtilsForTesting.installMock(mock.getFileSystem(null));
}
示例3: DirectoryReader
import java.nio.file.FileSystem; //导入方法依赖的package包/类
DirectoryReader(FileSystem fs, Path path) throws IOException {
super(path);
this.fsSep = fs.getSeparator();
}
示例4: resolveAgainst
import java.nio.file.FileSystem; //导入方法依赖的package包/类
public Path resolveAgainst(FileSystem fs) throws /*unchecked*/ InvalidPathException {
String sep = fs.getSeparator();
Path root = fs.getRootDirectories().iterator().next();
return root.resolve(path.replace("/", sep));
}