欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java 获取项目文件路径实现方法

程序员文章站 2023-12-20 17:52:16
this.getclass().getresource("/").getpath().substring(1)获得路径为e:/myeclipse/test/webroot/...

this.getclass().getresource("/").getpath().substring(1)获得路径为e:/myeclipse/test/webroot/web-inf/classes/,即主目录。

this.getclass().getresource("").getpath().substring(1)获得路径为e:/myeclipse/test/webroot/web-inf/classes/net/hncu/db/,即本文件的相对路径。

this.getclass().getresource(".").getpath().substring(1)和this.getclass().getresource("").getpath().substring(1)效果一样

上一篇:

下一篇: