java class路径获取

1. console模式下:

     String fileDir = Thread.currentThread().getContextClassLoader().getResource("./").getPath();

     或者               =  PropertiesFacoty.class.getClassLoader().getResource("./").getPath();

     或 URL fileDir = PropertiesFacoty.class.getResource(".");

     在web容器中直接获取到系统的lib目录而不是项目的。

 

2. web容器模式下:

     ServletContext context;

     String path = context.getRealPath("") + "\\WEB-INF\\classes\\";  通过ServletContext获取

 

posted @ 2011-11-07 22:35  小网虫  阅读(717)  评论(0编辑  收藏  举报