本文整理汇总了Java中jdk.internal.jimage.ImageReader.Node.resolveLink方法的典型用法代码示例。如果您正苦于以下问题:Java Node.resolveLink方法的具体用法?Java Node.resolveLink怎么用?Java Node.resolveLink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jdk.internal.jimage.ImageReader.Node
的用法示例。
在下文中一共展示了Node.resolveLink方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: lookupSymbolic
import jdk.internal.jimage.ImageReader.Node; //导入方法依赖的package包/类
private Node lookupSymbolic(String path) {
int i = 1;
while (i < path.length()) {
i = path.indexOf('/', i);
if (i == -1) {
break;
}
String prefix = path.substring(0, i);
Node node = lookup(prefix);
if (node == null) {
break;
}
if (node.isLink()) {
Node link = node.resolveLink(true);
// resolved symbolic path concatenated to the rest of the path
String resPath = link.getName() + path.substring(i);
node = lookup(resPath);
return node != null ? node : lookupSymbolic(resPath);
}
i++;
}
return null;
}
示例2: resolveLink
import jdk.internal.jimage.ImageReader.Node; //导入方法依赖的package包/类
JrtPath resolveLink(JrtPath path) throws IOException {
Node node = checkNode(path);
if (node.isLink()) {
node = node.resolveLink();
return new JrtPath(this, node.getName()); // TBD, normalized?
}
return path;
}
示例3: getFileAttributes
import jdk.internal.jimage.ImageReader.Node; //导入方法依赖的package包/类
JrtFileAttributes getFileAttributes(JrtPath path, LinkOption... options)
throws IOException {
Node node = checkNode(path);
if (node.isLink() && followLinks(options)) {
return new JrtFileAttributes(node.resolveLink(true));
}
return new JrtFileAttributes(node);
}
示例4: toRealPath
import jdk.internal.jimage.ImageReader.Node; //导入方法依赖的package包/类
JrtPath toRealPath(JrtPath path, LinkOption... options)
throws IOException {
Node node = checkNode(path);
if (followLinks(options) && node.isLink()) {
node = node.resolveLink();
}
// image node holds the real/absolute path name
return new JrtPath(this, node.getName(), true);
}