yj10864
BlogJava
::
首页
::
联系
::
聚合
::
管理
8 Posts :: 1 Stories :: 9 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
给我留言
查看公开留言
查看私人留言
我参与的团队
随笔档案
2010年1月 (1)
2009年12月 (2)
2009年11月 (1)
2009年10月 (2)
2009年9月 (2)
文章档案
2009年10月 (1)
搜索
最新评论
1. re: 23中设计模式-------轻松的比喻语言
不错,让我有了一定的理解。
--lexy
2. re: 23中设计模式-------轻松的比喻语言
顶一下,牛!
--WIN
3. re: 日期类的加减及java中所以日期类的操作算法大全
评论内容较长,点击标题查看
--找个美女做老婆
4. re: 日期类的加减及java中所以日期类的操作算法大全
评论内容较长,点击标题查看
--找个美女做老婆
5. re: 23中设计模式-------轻松的比喻语言
评论内容较长,点击标题查看
--找个美女做老婆
阅读排行榜
1. 日期类的加减及java中所以日期类的操作算法大全(7608)
2. 23中设计模式-------轻松的比喻语言(3212)
3. 解析properties资源文件(634)
4. Spring的字符过滤器的配置(568)
5. tomcat关闭后重启,SESSION 仍然有效的处理方法(341)
评论排行榜
1. 23中设计模式-------轻松的比喻语言(5)
2. 日期类的加减及java中所以日期类的操作算法大全(4)
3. 解析properties资源文件(0)
4. 使用 Java 生成 MD5 编码 (0)
5. tomcat关闭后重启,SESSION 仍然有效的处理方法(0)
解析properties资源文件
1
import
java.io.FileInputStream;
2
import
java.io.FileOutputStream;
3
import
java.util.HashMap;
4
import
java.util.Iterator;
5
import
java.util.Properties;
6
7
8
/** */
/**
9
* 功能:解析资源文件
10
*
11
*/
12
public
class
PropertyUtil
{
13
14
private
Properties property
=
new
Properties();
15
private
String filepath
=
""
;
16
17
/** */
/**
18
* 解析资源文件的类的构造函数
19
*
@param
path 文件索在的包,如:com.cn.myproperty.dbo.properties
20
*/
21
public
PropertyUtil(String path)
{
22
try
{
23
filepath
=
this
.getClass().getResource(
"
/
"
).getPath();
24
filepath
=
filepath
+
path;
25
26
27
property.load(
new
FileInputStream(filepath));
28
}
catch
(Exception e)
{
29
e.printStackTrace();
30
}
31
}
32
33
34
/** */
/**
35
* 返回资源文件的hashmap对象
36
*/
37
public
HashMap getElements()
{
38
HashMap map
=
new
HashMap ();
39
Iterator it
=
this
.property.keySet().iterator();
40
while
(it.hasNext())
{
41
String key
=
it.next().toString();
42
map.put(key, property.getProperty(key));
43
}
44
return
map;
45
}
46
47
48
//
返回资源文件里的值
49
public
String getvalue(String key)
{
50
if
(key
!=
null
)
51
return
this
.property.getProperty(key);
52
else
53
return
""
;
54
}
55
56
//
设置资源文件里的值
57
public
boolean
setvalue(String key,String value)
{
58
if
(key
!=
null
)
59
{
60
try
{
61
this
.property.setProperty(key,value);
62
this
.property.store(
new
FileOutputStream(filepath), filepath);
63
return
true
;
64
}
catch
(Exception ex)
{
65
System.out.println(
"
保存资源文件出错了
"
+
this
);
66
}
67
}
68
return
false
;
69
}
70
71
72
}
73
1
import
java.util.HashMap;
2
3
4
public
class
ConfigManager
{
5
private
static
HashMap map
=
null
;
6
static
{
7
if
(map
==
null
)
{
8
PropertyUtil propertyUtil
=
new
PropertyUtil(
"
property.properties
"
);
9
map
=
propertyUtil.getElements();
10
}
11
}
12
/** */
/**
13
* 得到SystemConfig资源文件中定义的值,如果未定义则返回空字符串,不是null
14
*
@param
key
15
*
@return
16
*/
17
public
static
String getValue(String key)
{
18
try
{
19
return
map.get(key).toString();
20
}
catch
(Exception ex)
{
21
System.out.println(ConfigManager.
class
+
"
>>> zi yuan wen jian mei you ding yi key suo dui ying de zhi
"
);
22
return
""
;
23
}
24
}
25
26
}
页面使用:
1
ConfigManager.getValue(
******
)
posted on 2010-01-08 13:51
jerry yang
阅读(634)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
Copyright @ jerry yang
Powered by:
.Text
and
ASP.NET
Theme by:
.NET Monster