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


Java Node.isDirectory方法代碼示例

本文整理匯總了Java中jdk.internal.jimage.ImageReader.Node.isDirectory方法的典型用法代碼示例。如果您正苦於以下問題:Java Node.isDirectory方法的具體用法?Java Node.isDirectory怎麽用?Java Node.isDirectory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jdk.internal.jimage.ImageReader.Node的用法示例。


在下文中一共展示了Node.isDirectory方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: iteratorOf

import jdk.internal.jimage.ImageReader.Node; //導入方法依賴的package包/類
/**
 * returns the list of child paths of the given directory "path"
 *
 * @param path name of the directory whose content is listed
 * @return iterator for child paths of the given directory path
 */
Iterator<Path> iteratorOf(JrtPath path, DirectoryStream.Filter<? super Path> filter)
        throws IOException {
    Node node = checkNode(path).resolveLink(true);
    if (!node.isDirectory()) {
        throw new NotDirectoryException(path.getName());
    }
    if (filter == null) {
        return node.getChildren()
                   .stream()
                   .map(child -> (Path)(path.resolve(new JrtPath(this, child.getNameString()).getFileName())))
                   .iterator();
    }
    return node.getChildren()
               .stream()
               .map(child -> (Path)(path.resolve(new JrtPath(this, child.getNameString()).getFileName())))
               .filter(p ->  { try { return filter.accept(p);
                               } catch (IOException x) {}
                               return false;
                              })
               .iterator();
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:28,代碼來源:JrtFileSystem.java

示例2: getFileContent

import jdk.internal.jimage.ImageReader.Node; //導入方法依賴的package包/類
byte[] getFileContent(JrtPath path) throws IOException {
    Node node = checkNode(path);
    if (node.isDirectory()) {
        throw new FileSystemException(path + " is a directory");
    }
    //assert node.isResource() : "resource node expected here";
    return image.getResource(node);
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:9,代碼來源:JrtFileSystem.java

示例3: isDirectory

import jdk.internal.jimage.ImageReader.Node; //導入方法依賴的package包/類
boolean isDirectory(JrtPath path, boolean resolveLinks)
        throws IOException {
    Node node = checkNode(path);
    return resolveLinks && node.isLink()
            ? node.resolveLink(true).isDirectory()
            : node.isDirectory();
}
 
開發者ID:AdoptOpenJDK,項目名稱:openjdk-jdk10,代碼行數:8,代碼來源:JrtFileSystem.java


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