java.io.File中的pathSeparator與separator的差異

來源:互聯網
上載者:User

標籤:sep   檔案名稱   序列   path   txt   window   ros   char s   ogr   

先總的說一下區別:
  File.pathSeparator指的是分隔連續多個路徑字串的分隔字元,例如:
  java  -cp  test.jar;abc.jar  HelloWorld
  就是指“;”

  File.separator才是用來分隔同一個路徑字串中的目錄的,例如:
  C:\Program Files\Common Files
  就是指“\”

  separatorChar

  public static final char separatorChar

  與系統有關的預設名稱分隔字元。此欄位被初始化為包含系統屬性 file.separator 值第一個字元。在 UNIX 系統上,此欄位的值為 ‘/‘;在 Microsoft Windows 系統上,它為 ‘\‘。

  separator

  public static final String separator

  與系統有關的預設名稱分隔字元,為了方便,它被表示為一個字串。此字串只包含一個字元,即 separatorChar。

  pathSeparatorChar

  public static final char pathSeparatorChar

  與系統有關的路徑分隔字元。此欄位被初始為包含系統屬性 path.separator 值的第一個字元。此字元用於分隔以路徑列表形式給定的檔案序列中的檔案名稱。在 UNIX 系統上,此欄位為 ‘:‘;在      Microsoft Windows 系統上,它為 ‘;‘。

  pathSeparator

  public static final String pathSeparator

  與系統有關的路徑分隔字元,為了方便,它被表示為一個字串。此字串只包含一個字元,即 pathSeparatorChar。

  例子:

  File ft = new File(File.separator);//指向當前class檔案所在的盤符,例如D:
  File ft2 = new File(ft,"File_separator.txt");// D:\File_separator.txt

java.io.File中的pathSeparator與separator的差異

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.