JiveJdon Community Forums
在线489人   首页   主题表   培训咨询   标签   精华   查搜   注册    登陆 RSS
首页 » 论坛 » J2EE/JavaEE/JEE/EJB/JSF等技术讨论
???en_US.forumThreadPrev.name??? 上一主题
  Go back to the topic 返回本主题   Go back to the topic listing返回主题列表
???en_US.forumThreadNext.name??? 下一主题
Go 总共有 0 回复 / 1
 发表新帖子   回复该主题贴
insky

悄悄话
发表文章: 2
注册时间: 2007年04月28日 02:27
static函数块中如何调用外部xml参数? 2008年04月19日 10:38 到本帖网址 加入本帖到收藏夹 发送到手机 回复该主题
标签列表


public class StopwordsEnglish extends Stopwords {

/**
*
*/

private static final long serialVersionUID = 1L;


/** The hashtable containing the list of stopwords */
private static Hashtable m_Stopwords = null;


static {

if (m_Stopwords == null) {
m_Stopwords = new Hashtable();
Double dummy = new Double(0);
File txt = new File(
"data/stopwords/stopwords_en.txt");
InputStreamReader is;
String sw = null;
try {
is = new InputStreamReader(new FileInputStream(txt),
"UTF-8");
BufferedReader br = new BufferedReader(is);
while ((sw=br.readLine()) != null) {
m_Stopwords.put(sw, dummy);
}
} catch (Exception e) {
e.printStackTrace();
}

}
}

/**
* Returns true if the given string is a stop word.
*/

public boolean isStopword(String str) {

return m_Stopwords.containsKey(str.toLowerCase());
}
}


File txt = new File("data/stopwords/stopwords_en.txt"); 这句想传一个参数进去(改下opwords_en.txt的路径) 但是这段在一个static块中,如果改成构造函数的形式需要该太多的相关调用类,这里如果加段读取外部xml配置文件中的参数会不会不好? 大家给点意见如何修改最好 谢谢
这个主题有 0 回复 / 1Go
???en_US.forumThreadPrev.name??? 上一主题
  Go back to the topic 返回本主题   Go back to the topic listing返回主题列表    返回页首返回页首
???en_US.forumThreadNext.name??? 下一主题
热点TAG: AOP cache 缓存 DDD EJB 集群 设计模式 Hibernate IOC JiveJdon OO RBAC Seam Spring Struts
正在读取,请等待...
google yahoo 新浪ViVi 365Key网摘 天极网摘 CSDN网摘 添加到百度搜藏 POCO网摘 博采网摘
查询本论坛内 回复超过的热门帖子
     回复该主题贴
标题
 
粗体 斜体 下划线 插入图片 插入代码 插入url链接 插入附件
内容
  发贴前查询 标签列表勿重复发表问题

RSS 手机阅读 add to google add to yahoo
解惑之道在J道 ,打造中国最具影响力的的企业软件社区
OpenSource JIVEJDON v3.0 Powered by JdonFramework Code © 2002-08 jdon.com
anti spam