Package org.jeecgframework.core.util

Source Code of org.jeecgframework.core.util.ResourceUtil

package org.jeecgframework.core.util;

import java.util.List;
import java.util.Map;
import java.util.ResourceBundle;
import java.util.Set;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.jeecgframework.web.system.manager.ClientManager;
import org.jeecgframework.web.system.pojo.base.TSRoleFunction;
import org.jeecgframework.web.system.pojo.base.TSUser;


/**
* 项目参数工具类
*
*/
public class ResourceUtil {

  private static final ResourceBundle bundle = java.util.ResourceBundle.getBundle("sysConfig");

  /**
   * 获取session定义名称
   *
   * @return
   */
  public static final String getSessionattachmenttitle(String sessionName) {
    return bundle.getString(sessionName);
  }
  public static final TSUser getSessionUserName() {
    HttpSession session = ContextHolderUtils.getSession();
    if(ClientManager.getInstance().getClient(session.getId())!=null){
      return ClientManager.getInstance().getClient(session.getId()).getUser();
    }
    return null;
  }
  @Deprecated
  public static final List<TSRoleFunction> getSessionTSRoleFunction(String roleId) {
    HttpSession session = ContextHolderUtils.getSession();
    if (session.getAttributeNames().hasMoreElements()) {
      List<TSRoleFunction> TSRoleFunctionList = (List<TSRoleFunction>)session.getAttribute(roleId);
      if (TSRoleFunctionList != null) {
        return TSRoleFunctionList;
      } else {
        return null;
      }
    } else {
      return null;
    }
  }
 
  /**
   * 获得请求路径
   *
   * @param request
   * @return
   */
  public static String getRequestPath(HttpServletRequest request) {
    String requestPath = request.getRequestURI() + "?" + request.getQueryString();
    if (requestPath.indexOf("&") > -1) {// 去掉其他参数
      requestPath = requestPath.substring(0, requestPath.indexOf("&"));
    }
    requestPath = requestPath.substring(request.getContextPath().length() + 1);// 去掉项目路径
    return requestPath;
  }

  /**
   * 获取配置文件参数
   *
   * @param name
   * @return
   */
  public static final String getConfigByName(String name) {
    return bundle.getString(name);
  }

  /**
   * 获取配置文件参数
   *
   * @param name
   * @return
   */
  public static final Map<Object, Object> getConfigMap(String path) {
    ResourceBundle bundle = ResourceBundle.getBundle(path);
    Set set = bundle.keySet();
    return oConvertUtils.SetToMap(set);
  }

 
 
  public static String getSysPath() {
    String path = Thread.currentThread().getContextClassLoader().getResource("").toString();
    String temp = path.replaceFirst("file:/", "").replaceFirst("WEB-INF/classes/", "");
    String separator = System.getProperty("file.separator");
    String resultPath = temp.replaceAll("/", separator + separator).replaceAll("%20", " ");
    return resultPath;
  }

  /**
   * 获取项目根目录
   *
   * @return
   */
  public static String getPorjectPath() {
    String nowpath; // 当前tomcat的bin目录的路径 如
            // D:\java\software\apache-tomcat-6.0.14\bin
    String tempdir;
    nowpath = System.getProperty("user.dir");
    tempdir = nowpath.replace("bin", "webapps"); // 把bin 文件夹变到 webapps文件里面
    tempdir += "\\"; // 拼成D:\java\software\apache-tomcat-6.0.14\webapps\sz_pro
    return tempdir;
  }

  public static String getClassPath() {
    String path = Thread.currentThread().getContextClassLoader().getResource("").toString();
    String temp = path.replaceFirst("file:/", "");
    String separator = System.getProperty("file.separator");
    String resultPath = temp.replaceAll("/", separator + separator);
    return resultPath;
  }

  public static String getSystempPath() {
    return System.getProperty("java.io.tmpdir");
  }

  public static String getSeparator() {
    return System.getProperty("file.separator");
  }

  public static String getParameter(String field) {
    HttpServletRequest request = ContextHolderUtils.getRequest();
    return request.getParameter(field);
  }

  /**
   * 获取数据库类型
   *
   * @return
   * @throws Exception
   */
  public static final String getJdbcUrl() {
    return DBTypeUtil.getDBType().toLowerCase();
  }
 
  public static void main(String[] args) {
    org.jeecgframework.core.util.LogUtil.info(getPorjectPath());
    org.jeecgframework.core.util.LogUtil.info(getSysPath());

  }
}
TOP

Related Classes of org.jeecgframework.core.util.ResourceUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.