我沒有從我的Analyzer獲得預期結果,並且想要測試標記化過程。 回答這個問題:How to use a Lucene Analyzer to tokenize a String? List<String> result = new ArrayList<String>();
TokenStream stream = analyzer.tokenStream(field, new StringR
我想分析jar文件的代碼(或字符串)(例如:如果jar文件包含「cheese」),我搜索了很多, t知道如何做到這一點:/ 我不想使用JD-GUI,因爲我的程序必須是自動的(用戶按下按鈕,然後他必須知道jar文件是否包含特定的方法(例如「public無效onEnable()」或一個字符串(例如 「奶酪」)) 我搜索,我發現: analyze jar file programmatically Ex