EndsWith(其他路径)java.nio.file.Path的方法,用于检查此路径是否以给定路径作为方法的参数结束。如果此路径以给定路径结束,则此方法返回true;否则,返回true。否则为假。
如果传递的路径具有N个元素,并且没有根成分,并且此路径具有N个或更多元素,则如果每个路径的最后N个元素(从距离根最远的元素开始)相等,则此路径以给定路径结尾。
如果传递的路径具有根成分,则此路径以给定路径结束,如果该路径的根成分以给定路径的根成分结束,并且两个路径的相应元素相等。此路径的根部分是否以给定路径的根部分结尾是filesystem-specific。如果此路径没有根组件,并且给定路径具有根组件,则该路径不会以给定路径结尾。
如果给定的路径与与此路径不同的FileSystem关联,则返回false。
用法:
boolean endsWith(Path other)
参数:此方法接受单个参数other,它是给定的路径。
返回值:如果此路径以给定路径结尾,则此方法返回true;否则,此方法返回true。否则为假。
以下示例程序旨在说明endsWith(Path other)方法:
示例1:
// Java program to demonstrate
// java.nio.file.Path.(Path other) method
import java.nio.file.Path;
import java.nio.file.Paths;
public class GFG {
public static void main(String[] args)
{
// create an object of Path
Path path
= Paths.get(“D:\\eclipse”
+ “\\plugins”
+ “\\javax.xml.rpc_1.1.0.v201209140446”
+ “\\lib”);
// create a path object which we will pass
// to endsWith method to check functionality
// of endsWith(Path other) method
Path passedPath = Paths.get(
“javax.xml.rpc_1.1.0.v201209140446”
+ “\\lib”);
// call endsWith() to check path object
// ends with passedPath or not
boolean check = path.endsWith(passedPath);
// print result
System.out.println(“Path ends with “
+ passedPath + ” :”
+ check);
}
}
输出:
今天的文章endswith java_Java Path endsWith()用法及代码示例分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:http://bianchenghao.cn/4902.html