程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> java中獲取文件或文件夾的路徑方法,java路徑

java中獲取文件或文件夾的路徑方法,java路徑

編輯:JAVA綜合教程

java中獲取文件或文件夾的路徑方法,java路徑


獲取當前類的所在工程路徑;
如果不加“/”
File f = new File(this.getClass().getResource("").getPath());
System.out.println(f);
結果:C:\Documents%20and%20Settings\Administrator\workspace\projectName\bin\com\test


獲取當前類的絕對路徑;
第二種:File directory = new File("");//參數為空
String courseFile = directory.getCanonicalPath() ;
System.out.println(courseFile);
結果:C:\Documents and Settings\Administrator\workspace\projectName


獲取當前類的所在工程路徑;
第三種:URL xmlpath = this.getClass().getClassLoader().getResource("selected.txt");
System.out.println(xmlpath);
結果:file:/C:/Documents%20and%20Settings/Administrator/workspace/projectName/bin/selected.txt


獲取當前工程src目錄下selected.txt文件的路徑
第四種:System.out.println(System.getProperty("user.dir"));
結果:C:\Documents and Settings\Administrator\workspace\projectName


獲取當前工程路徑第五種:System.out.println( System.getProperty("java.class.path"));
結果:C:\Documents and Settings\Administrator\workspace\projectName\bin
獲取當前工程路徑

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved