本文整理匯總了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));
}