SystemParament.java
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:2k
源码类别:
OA系统
开发平台:
Java
- package com.gforce.currency;
- /**
- * <p>Title: 吉力科技办公自动化系统</p>
- * <p>Description: 吉力科技办公自动化系统</p>
- * <p>Copyright: 版权所有 2003 (c) 西安吉力科技发展有限公司 Copyright (c) 2003 GForce Sceince & Technology</p>
- * <p>Company: 西安吉力科技发展有限公司 (GForce Sceince & Technology)</p>
- * @author 马登军
- * @version 1.0
- */
- public class SystemParament
- {
- /**
- * 设置系统参数属性文件路径
- */
- private static String strDatabaseParaFileName = "/config.properties";
- private static GetParament parament = new GetParament();
- /**
- * 创建私有对象,防止创建对象实例
- */
- private SystemParament()
- {
- }
- /**
- * 获取公司名称
- * @return 公司名称
- */
- public static String GetCommpanyName()
- {
- return getParament("companyname");
- }
- /**
- * 获取FTP服务器IP地址
- * @return FTP服务器地址
- */
- public static String getFTPServerAddress()
- {
- return getParament("ftpipaddress");
- }
- /**
- * 获取系统名称
- * @return 系统名称
- */
- public static String GetSystemName()
- {
- return getParament("systemname");
- }
- /**
- * 获取匿名用户ID
- * @return 匿名用户ID
- */
- public static String GetAnonymity()
- {
- return getParament("anonymity");
- }
- /**
- * 从参数文件中获取指定参数
- * @param strParamentName 指定参数
- * @return 指定参数值
- */
- public static String getParament(String strParamentName)
- {
- String strReturnValue = parament.GetStringParamentFromFile(strDatabaseParaFileName, strParamentName, "");
- return strReturnValue;
- }
- }