0
我需要獲取具有名稱的應用程序目錄。例如,如果我的Java應用程序在C:\ Program Files \ example1.exe中工作,我需要將其作爲「C:\ Program Files \ example1.exe」。或者它工作在C:\ Windows \ example2.exe 我需要將它作爲「C:\ Windows \ example2.exe」。我該怎麼做?如何在java中使用名稱獲取文件目錄
我需要獲取具有名稱的應用程序目錄。例如,如果我的Java應用程序在C:\ Program Files \ example1.exe中工作,我需要將其作爲「C:\ Program Files \ example1.exe」。或者它工作在C:\ Windows \ example2.exe 我需要將它作爲「C:\ Windows \ example2.exe」。我該怎麼做?如何在java中使用名稱獲取文件目錄
您可以使用System.getProperty("user.dir")
來查找您的工作目錄在哪裏。
謝謝,我怎樣才能得到.jar的名字。 – Castige