• 系统配置常量,域名根目录方法


    方法1:在servlet中通过代码获取,然后放置在session会话中.

    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    request.getSession().setAttribute("basePath", basePath);

    方法2:在系统常量类中定义 Constants.java

    public static String ROOT = "http://localhost:8080/BNCAR2/";

    在需要调用的地方直接用:Constants.ROOT,如:

    <input type="hidden" name="basePath" id="basePath" value="<%=Constants.ROOT %>" />

    推荐第二种方法更加方便~!



  • 相关阅读:
    制作文件的备份
    文件的读写
    文件的打开与关闭
    文件操作介绍
    数据类型转换
    位运算
    进制
    函数使用注意事项
    匿名函数
     递归函数
  • 原文地址:https://www.cnblogs.com/simpledev/p/3530887.html
Copyright © 2020-2023  润新知