zoukankan      html  css  js  c++  java
  • 获取java路径的几种方法

    很多情况下,我们需要在JavaBeanServlet中获得当前的目录路径,比如载入配置文件,上传文件到服务器等,这是各种获得路径的方法的总结,备忘。

    1.载入jdbc.properties

          1ClassLoadergetResourceAsStream("XXX")

                InputStream in=XXX.class.getClassLoader().getResourceAsStream("jdbc.properties");

                getResourceAsStream()会到classes目录下找jdbc.properties文件,所以在工程项目中,我们一般把它放在src目录下。

          2Class.getResourceAsStream("/XXX")

               XXX.class.getResourceAsStream("/jdbc.properties");

          两种方式的共同点就是:jdbc.properties都应该在classes下,也就是项目的src目录

          不同点就是:ClassLoader.getResourceAsStream(“XXX”)中参数不以"/"开头,而Class.getResourceAsStream("/XXX")终参数以"/"开头

    2.Javabean中获得路径

      1)获得当前类XXX.class文件的URI目录,不包括自己:XXX.class.getResource("")

        如:在类com.test.XXX中取得项目的根绝对路径

        URL url=XXX.class.getResource("");

        String filename=url.getFile();

        String projectRootPath=new File(filename,"http://www.cnblogs.com/http://www.cnblogs.com/").getCanonicalPath();

        //main函数中测试

        //filename:/d:/workspace/testproject/build/calsses/com/test/

        //projectRootPath:d:/workspace/testproject

        //tomcat中测试

        //filename:/d:/tomcat/webapps/testproject/WEB-INF/calsses/com/test/

        //projectRootPath:d:/tomcat/webapps/testproject

    2)获得的是当前的classpath的绝对URI路径:XXX.class.getResource("/")

    如:在类com.test.XXX中取得项目的根绝对路径

    URL url=XXX.class.getResource("/");

    String filename=url.getFile();

    String projectRootPath=new File(filename,"http://www.cnblogs.com/").getCanonicalPath();

    //main函数中测试

    //filename:/d:/workspace/testproject/build/calsses/

    //projectRootPath:d:/workspace/testproject

    //tomcat中测试

    //filename:/d:/tomcat/webapps/testproject/WEB-INF/calsses/

    //projectRootPath:d:/tomcat/webapps/testproject

    3)获得的是当前ClassPath的绝对URI路径:  //推荐使用

    Thread.currentThread().getContextClassLoader().getResource("");

    4)获得的是当前ClassPath的绝对URI路径:

    XXX.class.getClassLoader().getResource("");

    5)获得的是当前ClassPath的绝对URI路径:  //推荐使用

    ClassLoader.getSystemResource("");

    6)当前用户目录的相对路径:System.getProperty("user.dir")  //不推荐使用

    3.servlet中获得路径

    1)获得相对路径:

    this.getServletContext().getResource("/").getPath();

    //输出:/localhost/testproject/

    2String strPath2=this.getServletContext().getRealPath("/");

    //输出:d:/tomcat/webapps/testproject/

  • 相关阅读:
    Could not instantiate bean class [org.springframework.web.multipart.MultipartFile]: Specified class
    移动商城第三篇【搭建Mybatis和Spring环境、编写Dao、Service在Core模块】
    移动商城第二篇【页面框架解析】
    移动商城第一篇【搭建项目环境】
    idea下使用Maven找不到类
    Oracle与Mysql区别简述
    Shiro第六篇【验证码、记住我】
    Shiro第五篇【授权过滤、注解、JSP标签方式、与ehcache整合】
    Shiro第四篇【Shiro与Spring整合、快速入门、Shiro过滤器、登陆认证】
    Shiro第三篇【授权、自定义reaml授权】
  • 原文地址:https://www.cnblogs.com/fengbeihong/p/2800402.html
Copyright © 2011-2022 走看看