-2
例如, java ee項目位於C:\ ABC中。獲得servlet中的java ee項目的絕對路徑
該servlet位於C:\ ABC \ src \ demo \ HelloServlet.java。
public void doGet(..,..){
//how can I get the absolute path of the project(C:\ABC\)
}
例如, java ee項目位於C:\ ABC中。獲得servlet中的java ee項目的絕對路徑
該servlet位於C:\ ABC \ src \ demo \ HelloServlet.java。
public void doGet(..,..){
//how can I get the absolute path of the project(C:\ABC\)
}
你可以試試:
request.getSession().getServletContext().getRealPath("");
使用此:request.getServletContext()getRealPath( 「」);