Loading...

java .net

2007年11月6日 星期二

//**读取properties配置文件的类

import java.util.*;
import java.io.*;

public final class ParseProperties {
private static Properties properties = null;

    private ParseProperties() {
    }

    public static String getProperties(String propStr){
    if(properties==null){
       try{
        InputStream is=ParseProperties.class.getClassLoader().getResourceAsStream("runqianServ.properties");
        properties = new Properties();
             properties.load(is);
             is.close();
       }catch(Exception e){
                e.printStackTrace();
            }
    }
        return properties.getProperty(propStr);
    }
   
    public static void main(String[] args) {
        String driver=ParseProperties.getProperties("runqianServ");
        System.out.println(driver);
    }


}

在apache-tomcat-5.5.17使用Struts Tag会抛出Failer to load or instantiate TagExtraInfo class:org.apache.struts.taglib.bean.CookieTei的异常。(这只是bean标签,其它标签异常略)
    解决方法:删除WEB_INF/lib/javax.servlet.jsp.jar。(jsp jar包会引起冲突)

posted on 2008-08-26 22:06 阅读(101) 评论(0)  编辑  收藏


只有注册用户登录后才能发表评论。


网站导航:
 

公告

希望有一天

我能用鼠标双击我的钱包

然后选中一张100元

按住“ctrl+c”

接着不停的“ctrl+v”

嘻嘻~~~笑醒~~~



导航

<2008年8月>
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

统计

常用链接

留言簿(6)

随笔分类(102)

随笔档案(398)

文章分类

文章档案(10)

有趣网络

搜索

积分与排名

最新评论

阅读排行榜

评论排行榜