vb.net 3.5 フレームワーク アプリケーションで Lucene.NET 3.0.3 を使用しています。イタリア語のストップワード ファイルを渡す必要があります。
FileInfo または TextReader を使用して、標準的な方法でアナライザーを起動すると、常に英語のストップ ワードが表示されます。
stopword = New System.IO.FileInfo(stopWordsLocation)
analyzer = New StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_30, stopword)
analyzer = New StandardAnalyzer(Lucene.Net.Util.Version.LUCENE_30, stopword)
'here i have still the English stop words if I go through quick-watch my analyzer
誰も手がかりを持っていますか?