當前位置: 首頁>>代碼示例>>Java>>正文


Java FileSystem.getSeparator方法代碼示例

本文整理匯總了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;
}
 
開發者ID:DevOpsStudio,項目名稱:Re-Collector,代碼行數:13,代碼來源:GlobPathSet.java

示例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));
}
 
開發者ID:justor,項目名稱:elasticsearch_my,代碼行數:9,代碼來源:NewPathForShardTests.java

示例3: DirectoryReader

import java.nio.file.FileSystem; //導入方法依賴的package包/類
DirectoryReader(FileSystem fs, Path path) throws IOException {
    super(path);
    this.fsSep = fs.getSeparator();
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:5,代碼來源:ClassFileReader.java

示例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));
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:6,代碼來源:RelativePath.java


注:本文中的java.nio.file.FileSystem.getSeparator方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。