linlinyu
linlinyu
posts - 0, comments - 4, trackbacks - 0, articles - 15
导航
BlogJava
首页
新随笔
联系
聚合
管理
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
留言簿
给我留言
查看公开留言
查看私人留言
随笔档案
2008年5月 (1)
文章分类
ejb(2)
flex(1)
hibernate(1)
html(1)
java(4)
javascript(1)
oracle(2)
roller
servlet(4)
spring
文章档案
2008年10月 (1)
2008年6月 (1)
2008年5月 (2)
2008年1月 (1)
2007年12月 (4)
2007年11月 (6)
搜索
最新评论
1. re: Flex 访问 Ejb如此简单
评论内容较长,点击标题查看
--akan
2. re: struts2 输出xml格式内容
多谢了,挺有用的。
--lw
3. re: firebug的使用
up,正需要这个。
try a try先,不知道有没有javascript自动排版的功能。
--久城
4. re: firebug的使用
不错不错
--解冻的鱼
Property 文件读取
Posted on 2007-11-25 10:56
linlin yu
阅读(782)
评论(0)
编辑
收藏
所属分类:
java
通用java 属性文件读取,将xxx.properties放在classpath中就可以运行了
package
com.soyoung.xxx.config;
import
java.io.InputStream;
import
java.util.Properties;
public
class
XXXConfig
{
private
static
String default_config
=
"
/xxx.properties
"
;
private
static
Properties mConfig;
static
{
mConfig
=
new
Properties();
try
{
Class config_class
=
Class.forName(XXXConfig.
class
.getName());
InputStream is
=
config_class.getResourceAsStream(default_config);
mConfig.load(is);
}
catch
(Exception e)
{
e.printStackTrace();
}
}
private
void
XXXConfig()
{
}
public
static
String getProperty(String key)
{
return
mConfig.getProperty(key);
}
public
static
String getProperty(String key, String defaultValue)
{
String value
=
mConfig.getProperty(key);
if
(value
==
null
)
return
defaultValue;
return
value;
}
public
static
boolean
getBooleanProperty(String name,
boolean
defaultValue)
{
String value
=
XXXConfig.getProperty(name);
if
(value
==
null
)
return
defaultValue;
return
(
new
Boolean(value)).booleanValue();
}
public
static
int
getIntProperty(String name)
{
return
getIntProperty(name,
0
);
}
public
static
int
getIntProperty(String name,
int
defaultValue)
{
String value
=
XXXConfig.getProperty(name);
if
(value
==
null
)
return
defaultValue;
return
(
new
Integer(value)).intValue();
}
public
static
void
main(String args[])
{
//
mConfig.setProperty("name", "jianglinyu");
System.out.println(XXXConfig.getProperty(
"
name
"
));
}
}
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
Flex 访问 Ejb如此简单
jboss ssl
struts2 输出xml格式内容
Property 文件读取
Powered by:
BlogJava
Copyright © linlin yu