在Java中,可以使用ServletContext
對象來獲取服務器路徑。可以通過getRealPath()
方法來獲取服務器的真實路徑。
以下是一個示例代碼:
import javax.servlet.ServletContext;
public class Main {
public static void main(String[] args) {
// 獲取ServletContext對象
ServletContext context = YourServlet.getServletContext();
// 獲取服務器路徑
String serverPath = context.getRealPath("/");
System.out.println("Server Path: " + serverPath);
}
}
請注意,上述示例代碼中的YourServlet
是一個自定義的Servlet類,你需要將其替換為你自己的類名。