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获取

原文地址:https://www.cnblogs.com/sinpo/p/2243969.html