static函式塊中如何呼叫外部xml引數?
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()); } } <p class="indent"> |
File txt = new File("data/stopwords/stopwords_en.txt"); 這句想傳一個引數進去(改下opwords_en.txt的路徑) 但是這段在一個static塊中,如果改成建構函式的形式需要該太多的相關呼叫類,這裡如果加段讀取外部xml配置檔案中的引數會不會不好? 大家給點意見如何修改最好 謝謝
相關文章
- python不定長引數如何呼叫函式?Python函式
- 外部函式的呼叫函式
- httprunner yml 呼叫外部函式HTTP函式
- 4.2 函式的外部引數名 [Swift教程]函式Swift
- 函式的呼叫方式和引數函式
- Lua中呼叫ref和out修飾引數的函式/過載函式函式
- static變數,static程式碼塊,建構函式,程式碼塊等的載入順序變數C程式函式
- 函式呼叫引數變數傳值的問題函式變數
- Python中將函式作為另一個函式的引數傳入並呼叫Python函式
- 程式中的函式引數函式
- 函式中引數傳值函式
- 【C語言】函式的概念和函式的呼叫(引數傳遞)C語言函式
- 函式引數 引數定義函式型別函式型別
- python中getattr如何帶引數呼叫?Python
- Swift 呼叫 Objective-C 的可變引數函式SwiftObject函式
- 揭秘 Go 中的函式引數Go函式
- 如何計算PHP函式中傳遞的引數數量PHP函式
- 如何使用函式指標呼叫類中的函式和普通函式函式指標
- gdb 如何呼叫函式?函式
- python中函式的引數傳遞Python函式
- Javascript函式引數求值——Thunk函式JavaScript函式
- 函式基礎和函式引數函式
- PHP 都有,Go 憑什麼不支援命名引數呼叫函式?PHPGo函式
- Sanic static() 方法/函式函式
- 學習javaScript必知必會(1)~js介紹、函式、匿名函式、自呼叫函式、不定長引數JavaScriptJS函式
- Python 中__init__函式以及引數selfPython函式
- OpenCV中的findContours函式引數詳解OpenCV函式
- 函式、引數、解構函式
- 函式引數詳解函式
- PHP vs Go,為什麼 Go 不支援命名引數呼叫函式?PHPGo函式
- 3.3.2 函式的預設引數和佔位引數 函式過載函式
- 模型的列表定義中,使用函式時如何定義引數?模型函式
- 如何在 Deno 應用程式中呼叫 Rust 函式Rust函式
- python---函式引數、變數Python函式變數
- 深入探討Function Calling:實現外部函式呼叫的工作原理Function函式
- 一文看懂 Python 中的函式引數Python函式
- 單據型別引數設定增加自定義引數並透過BOS標準函式呼叫型別函式
- [除數函式+除法分塊]函式
- Python函式引數總結Python函式