當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.io.File.compareTo()用法及代碼示例



描述

這個java.io.File.compareTo(File pathname)方法按字典順序比較兩個抽象路徑名。此方法定義的順序取決於操作係統。

聲明

以下是聲明java.io.File.compareTo(File pathname)方法 -

public int compareTo(File pathname)

參數

pathname- 要與此抽象路徑名進行比較的抽象路徑名。

返回值

如果參數等於此抽象路徑名,則此方法返回零,如果抽象路徑名按字典順序分別小於參數和大於參數,則返回負值和大於 0 的值。

異常

NA

示例

下麵的例子展示了 java.io.File.compareTo(File pathname) 方法的用法。

package com.tutorialspoint;

import java.io.File;

public class FileDemo {
   public static void main(String[] args) {      
      File f = null;
      File f1 = null;
      
      try {
         // create new files
         f = new File("test.txt");
         f1 = new File("File/test1.txt");
         
         // returns integer value
         int value = f.compareTo(f1);
         
         // prints
         System.out.print("Lexicographically, ");
         System.out.print("abstract path name test.txt");
         
         // if lexicographically, argument = abstract path name
         if(value == 0) {
            System.out.print(" = ");
         }
         
         // if lexicographically, argument < abstract path name
         else if(value > 0) {
            System.out.print(" > ");
         }
         
         // if lexicographically, the argument > abstract path name
         else {
            System.out.print(" < ");
         }
         
         // print
         System.out.println("abstract path name File/test1.txt");
         
         // prints the value returned by compareTo()
         System.out.print("Value returned:"+value);
         
      } catch(Exception e) {
         e.printStackTrace();
      }
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果 -

Lexicographically, abstract path name test.txt > abstract path name File/test1.txt
Value returned:46

相關用法


注:本文由純淨天空篩選整理自 Java.io.File.compareTo() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。