博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java两个文件夹比较路径_比较Java中两个文件的路径
阅读量:2532 次
发布时间:2019-05-11

本文共 1941 字,大约阅读时间需要 6 分钟。

java两个文件夹比较路径

Given the paths of the two files and we have two compare the paths of the files in Java.

给定两个文件的路径,我们有两个比较Java中文件的路径。

Comparing paths of two files

比较两个文件的路径

To compare the paths of two files, we can use , it is called with a file object and second file path passes as an argument and method returns 0 if both file paths are the same.

为了比较两个文件的路径 ,我们可以使用 ,该与文件对象一起调用,第二个文件路径作为参数传递,并且如果两个文件路径相同,则方法返回0。

Syntax:

句法:

//file object creation    File F1 = new File("d://courses//intro.docx");    File F2 = new File("d://courses//intro.docx");    //comparing file paths of F1 and F2    F1.compareTo(F2);    Output:    0

Java代码比较两个文件的路径 (Java code to compare the paths of two files)

//Java code to compare the paths of two filesimport java.io.*;public class Main {
public static void main(String[] args) {
//file object creation File F1 = new File("d://courses//intro.docx"); File F2 = new File("d://courses//intro.docx"); File F3 = new File("d://courses//basic.docx"); //comparing file paths using compareTo() method //comparing file paths of F1 and F2 if (F1.compareTo(F2) == 0) {
System.out.println("paths of F1 and F2 are same..."); } else {
System.out.println("paths of F1 and F2 are not same..."); } //comparing file paths of F2 and F3 if (F2.compareTo(F3) == 0) {
System.out.println("paths of F2 and F3 are same..."); } else {
System.out.println("paths of F2 and F3 are not same..."); } //comparing file paths of F3 and F1 if (F3.compareTo(F1) == 0) {
System.out.println("paths of F3 and F1 are same..."); } else {
System.out.println("paths of F3 and F1 are not same..."); } }}

Output

输出量

paths of F1 and F2 are same...paths of F2 and F3 are not same...paths of F3 and F1 are not same...

翻译自:

java两个文件夹比较路径

转载地址:http://dsxzd.baihongyu.com/

你可能感兴趣的文章
java学习笔记④MySql数据库--01/02 database table 数据的增删改
查看>>
两台电脑如何实现共享文件
查看>>
组合模式Composite
查看>>
程序员最想得到的十大证件,你最想得到哪个?
查看>>
我的第一篇CBBLOGS博客
查看>>
【MyBean调试笔记】接口的使用和清理
查看>>
07 js自定义函数
查看>>
jQueru中数据交换格式XML和JSON对比
查看>>
form表单序列化后的数据转json对象
查看>>
[PYTHON]一个简单的单元測试框架
查看>>
iOS开发网络篇—XML数据的解析
查看>>
[BZOJ4303]数列
查看>>
一般处理程序在VS2012中打开问题
查看>>
C语言中的++和--
查看>>
thinkphp3.2.3入口文件详解
查看>>
POJ 1141 Brackets Sequence
查看>>
Ubuntu 18.04 root 使用ssh密钥远程登陆
查看>>
Servlet和JSP的异同。
查看>>
虚拟机centOs Linux与Windows之间的文件传输
查看>>
ethereum(以太坊)(二)--合约中属性和行为的访问权限
查看>>