1. 程式人生 > >java 將圖片上傳到webapp路徑下 路徑獲取方式

java 將圖片上傳到webapp路徑下 路徑獲取方式

//此方法獲取到工程webapp資料夾下

String contexPath= request.getSession().getServletContext().getRealPath("/");

//獲取IP地址埠號以及專案名稱

<%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>