SystemParament.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. package com.gforce.currency;
  2. /**
  3.  * <p>Title: 吉力科技办公自动化系统</p>
  4.  * <p>Description: 吉力科技办公自动化系统</p>
  5.  * <p>Copyright: 版权所有 2003 (c) 西安吉力科技发展有限公司  Copyright (c) 2003 GForce Sceince & Technology</p>
  6.  * <p>Company: 西安吉力科技发展有限公司 (GForce Sceince & Technology)</p>
  7.  * @author 马登军
  8.  * @version 1.0
  9.  */
  10. public class SystemParament
  11. {
  12.     /**
  13.      * 设置系统参数属性文件路径
  14.      */
  15.     private static String strDatabaseParaFileName = "/config.properties";
  16.     private static GetParament parament = new GetParament();
  17.     /**
  18.      * 创建私有对象,防止创建对象实例
  19.      */
  20.     private SystemParament()
  21.     {
  22.     }
  23.     /**
  24.      * 获取公司名称
  25.      * @return  公司名称
  26.      */
  27.     public static String GetCommpanyName()
  28.     {
  29.         return getParament("companyname");
  30.     }
  31.     /**
  32.      * 获取FTP服务器IP地址
  33.      * @return FTP服务器地址
  34.      */
  35.     public static String getFTPServerAddress()
  36.     {
  37.       return getParament("ftpipaddress");
  38.     }
  39.     /**
  40.      * 获取系统名称
  41.      * @return  系统名称
  42.      */
  43.     public static String GetSystemName()
  44.     {
  45.         return getParament("systemname");
  46.     }
  47.     /**
  48.      * 获取匿名用户ID
  49.      * @return 匿名用户ID
  50.      */
  51.     public static String GetAnonymity()
  52.     {
  53.         return getParament("anonymity");
  54.     }
  55.     /**
  56.      * 从参数文件中获取指定参数
  57.      * @param strParamentName  指定参数
  58.      * @return  指定参数值
  59.      */
  60.     public static String getParament(String strParamentName)
  61.     {
  62.         String strReturnValue = parament.GetStringParamentFromFile(strDatabaseParaFileName, strParamentName, "");
  63.         return strReturnValue;
  64.     }
  65. }