您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)JAVA怎么獲取當(dāng)前項(xiàng)目和文件所在路徑的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
直接上代碼:
//當(dāng)前項(xiàng)目下路徑 File file = new File(""); String filePath = file.getCanonicalPath(); System.out.println(filePath); //當(dāng)前項(xiàng)目下xml文件夾 File file1 = new File(""); String filePath2 = file1.getCanonicalPath()+File.separator+"xml\\"; System.out.println(filePath2); //獲取類加載的根路徑 File file3 = new File(this.getClass().getResource("/").getPath()); System.out.println(file3); //獲取當(dāng)前類的所在工程路徑 File file4 = new File(this.getClass().getResource("").getPath()); System.out.println(file4); //獲取所有的類路徑 包括jar包的路徑 System.out.println(System.getProperty("java.class.path"));
輸出結(jié)果:
1.當(dāng)前項(xiàng)目下路徑
E:\Work\example
2.當(dāng)前項(xiàng)目下xml文件夾
E:\Work\example\xml
3.獲取類加載的根路徑
E:\Work\example\out\production\classes
4.獲取當(dāng)前類的所在工程路徑
E:\Work\example\out\production\classes\com\demo
5.獲取所有的類路徑 包括jar包的路徑D:\Java\jdk1.8.0_65\jre\lib\charsets.jar;D:\Java\jdk1.8.0_65\jre\lib\deploy.jar;
知識點(diǎn)補(bǔ)充:
Java獲取當(dāng)前項(xiàng)目文件路徑
在一些時(shí)候需要用到項(xiàng)目的模板或其他文件,這時(shí)候可能需要組合得到文件路徑。
String projectPath = System.getProperty(“user.dir”); System.out.println(“projectPath==” + projectPath);
感謝各位的閱讀!關(guān)于“JAVA怎么獲取當(dāng)前項(xiàng)目和文件所在路徑”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。