BlueSpace
思想有多远,我们就能走多远!
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 0, comments - 5, trackbacks - 0
<
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
留言簿
(1)
给我留言
查看公开留言
查看私人留言
我参与的团队
深圳Java俱乐部(0/0)
文章分类
ajax(1)
hibernate(4)
java(21)
javasrcipt(13)
mysql数据库(6)
spring
文章档案
2009年8月 (1)
2009年3月 (2)
2008年10月 (1)
2008年7月 (3)
2008年6月 (11)
2008年3月 (1)
2008年2月 (1)
2007年12月 (11)
2007年11月 (3)
2007年9月 (13)
相册
my photo
http://www.blogjava.net/beansoft
http://www.blogjava.net/sterning
http://www.blogjava.net/sterning
搜索
最新评论
1. re: xfire aegis转
评论内容较长,点击标题查看
--啊啊啊
2. re: xfire aegis转
itn
--吃饭会非常
3. re: distinct 与 order by
“select * from test group by name”这个SQL语句有问题,执行不了
--didi
4. re: java读取excel文件
good,so well,
--1111
5. re: 正则表达式,不区分大小写的替换
评论内容较长,点击标题查看
--新手。
java记取xml配置文件
需要用到commons-logging-1.0.4.jar,dom4j-1.4.jar包
1
import java.io.File;
2
import java.io.IOException;
3
4
import org.apache.commons.logging.Log;
5
import org.apache.commons.logging.LogFactory;
6
import org.dom4j.Document;
7
import org.dom4j.io.SAXReader;
8
9
/**
10
* @author wufalong
11
*
12
* TODO To change the template for this generated type comment go to
13
* Window - Preferences - Java - Code Style - Code Templates
14
*/
15
public class LoadRootElementByConfigFile {
16
private static Log log = LogFactory.getLog(LoadRootElementByConfigFile.class);
17
public static Document getRootElement(){
18
String path="";
19
File file = new File(".");
20
try
21
{
22
path = file.getCanonicalPath();
23
}
24
catch (IOException e)
25
{
26
e.printStackTrace();
27
}
28
29
Document document = null;
30
String filePath = "";
31
try{
32
filePath = path+"/config.xml";
33
File f = new File(filePath); //服务器运行目录
34
SAXReader reader = new SAXReader();
35
document = reader.read(f);
36
}catch(Exception e){
37
filePath = path+"/src/config.xml";
38
File f = new File(filePath); //eclipse调试目录
39
SAXReader reader = new SAXReader();
40
try{
41
document = reader.read(f);
42
}catch(Exception ex){
43
44
}
45
}
46
log.info("配置文件路径:"+filePath);
47
return document;
48
}
49
}
posted on 2007-09-03 10:59
crazy
阅读(253)
评论(0)
编辑
收藏
所属分类:
java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
java HttpClient
html正则处理
正则2
正则
java的时间处理
xfire 集合 aegis
xfire aegis转
转载
判断是否存在中文
java正则表达式