[
https://issues.apache.org/jira/browse/LUCENE-1413?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Michael Busch resolved LUCENE-1413.
-----------------------------------
Resolution: Invalid
I'm closing this, because PlainTextDictionary has also the following public
constructor:
/**
* Creates a dictionary based on a reader.
*/
public PlainTextDictionary(Reader reader) {
in = new BufferedReader(reader);
}
So you can just pass in the InputStreamReader(dictFile, fileEncoding) using
this constructor.
> Creating PlainTextDictionary with UTF8 files
> --------------------------------------------
>
> Key: LUCENE-1413
> URL: https://issues.apache.org/jira/browse/LUCENE-1413
> Project: Lucene - Java
> Issue Type: Improvement
> Components: contrib/spellchecker
> Affects Versions: 2.3.2
> Environment: All platform / operating systems
> Reporter: YourSoft
> Fix For: 2.9
>
>
> Generate indexes from text files is good, but can't read utf8 files.
> It can easily made by adding the following code to PlainTextDictionary.java:
> public PlainTextDictionary(InputStream dictFile, String fileEncoding) throws
> UnsupportedEncodingException {
> in = new BufferedReader(new InputStreamReader(dictFile, fileEncoding));
> }
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]