• Java获得绝对路径


    "./"代表当前目录,"../"代表上级目录,是属于相对路径。

    1、在jsp页面中

    项目名:adjust

    jsp名:test.jsp

    (1)返回站点的根目录:request.getContextPath() 

    输出:/adjust

    (2)返回协议名称,默认是http:request.getScheme()

    输出:http

    (3)返回在服务器的配置文件中配置的服务器名称 比如:localhost .baidu.com 等等:request.getServerName() 

    输出:localhost

    (4)返回服务器的配置文件中配置的端口号 比如 8080等等:String tPath =request.getServerPort()+"";(这个需要加上“”变成字符串才对)

    输出:8080

    (5)以上综合效果:

    String basePath = request.getScheme()+"://"+request.getServerName()+ ":"+request.getServerPort();
    String Path = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+ request.getContextPath()+"/";
    System.out.println(basePath);
    System.out.println(Path);

    输出:

    http://localhost:8080
    http://localhost:8080/adjust/

    (6)返回包含工程名的当前页面全路径:request.getRequestURI()

    输出:/adjust/test.jsp

    (7))返回当前页面上一级路径,包含文件名:request.getServletPath()

    输出:/test.jsp

    注意:如果adjust下面有个文件夹main,main下面才是test.jsp,则输出/main/test.jsp

    2、在java类中

    eg:项目test,包:list ,java文件:hh.java

    (1)返回类的绝对路径:Class.class.getClass().getResource("/").getPath()

    输出:/D:/workspace/Test/build/classes/

    (2)返回工程的路径:System.getProperty("user.dir")

    输出:D:workspaceTest

  • 相关阅读:
    谈谈jQuery之绑定事件
    手机移动端WEB资源整合
    2016移动端web5分钟速成(适合新手)
    日常整理的一些网址
    web服务器页面错误代码集
    jQuery事件绑定的最佳实践
    前端体系
    js刷新页面的几种方法
    JAVA的静态变量、静态方法、静态类
    在Hadoop集群中添加机器和删除机器
  • 原文地址:https://www.cnblogs.com/zhouerba/p/7374136.html
Copyright © 2020-2023  润新知