JAVA获取webapp路径】的更多相关文章

1.使用ServletContext获取webapp目录 在Servlet中 String path = getServletContext().getRealPath("/"); 获取到的路径 /usr/local/tomcat/webapps/multimedia multimedia 是我的项目名称 2.使用ClassLoader获取class路径 在任意JAVA类中 this.getClass().getClassLoader().getResource("/&quo…
spring java 获取webapp下文件路径 @RequestMapping("/act/worldcup_schedule_time/imgdownload") @ResponseBody public String scheduleDownload(HttpServletRequest request, HttpServletResponse response, HttpSession session) { response.setCharacterEncoding(&quo…
public class UtilPath { public static void main(String[] args) { String systemName = System.getProperty("os.name"); System.out.println(getProjectPath()); } /** * 获取到classes目录 * @return path */ public static String getClassPath(){ String systemNa…
// 第一种:获取类加载的根路径 D:\IDEAWorkspace\hs-bluetooth-lock\src\applications\bluetooth-api\target\classes File f = new File(this.getClass().getResource("/").getPath()); System.out.println(f); // 获取当前类的所在工程路径; 如果不加“/” 获取当前类的加载目录 D:\IDEAWorkspace\hs-bluet…
 获取文件资源有两种方式: 第一种是: 获取Java项目根目录开始制定文件夹下指定文件,不用类加载器(目录开始要加/) // 获取工程路径 System.out.println(System.getProperty("user.dir")); // E:\EclipseWorkspace\AllTest // 获取工程路径下的文件 String path = System.getProperty("user.dir") + "\\test.txt"…
package com.jason.test; import java.io.File; import java.io.IOException; import java.net.URL; public class MyUrlDemo { public static void main(String[] args) { MyUrlDemo muDemo = new MyUrlDemo(); try { muDemo.showURL(); } catch (IOException e) { // T…
(1).request.getRealPath("/");//不推荐使用获取工程的根路径(2).request.getRealPath(request.getRequestURI());//获取jsp的路径,这个方法比较好用,可以直接在servlet和jsp中使用(3).request.getSession().getServletContext().getRealPath("/");//获取工程的根路径,这个方法比较好用,可以直接在servlet和jsp中使用(4…
java获取服务器一些信息的方法(服务器地址/相对路径/端口/项目名字 request.getServletContext().getRealPath("/")  获取项目所在服务器的全路径,如:D:\apache-tomcat-7.0.25\webapps\TestSytem\request.getServletPath()    获取客户端请求的路径名,如:/object/delObjectrequest.getServerName()    获取服务器地址,如:localhost…
Java环境中,如何获取当前类的路径.如何获取项目根路径等: @Test public void showURL() throws IOException { // 第一种:获取类加载的根路径 File f = new File(this.getClass().getResource("/").getPath()); System.out.println(f); // 获取当前类的所在工程路径; 如果不加"/" 获取当前类的加载目录 File f2 = new Fi…
1.在JSF环境中获取到ServletContext: 1 2 ServletContext sc = (ServletContext)FacesContext.         getCurrentInstance().getExternalContext().getContext(); 2.servlet中获得项目绝对路径 1 2 String filePath=this.getServletConfig().         getServletContext().getRealPath(…