John Wang created LUCENE-4530:
---------------------------------
Summary: ArrayOutofBoundsException with WhiteSpaceAnalyzer
Key: LUCENE-4530
URL: https://issues.apache.org/jira/browse/LUCENE-4530
Project: Lucene - Core
Issue Type: Bug
Components: modules/analysis
Affects Versions: 4.0
Reporter: John Wang
Run the following test and get an AOOBE.
@Test
public void testLucene() throws Exception {
Analyzer analyzer = new StandardAnalyzer(Version.LUCENE_40);
String text = "أعجبني مقطع فيديو في الملفات السرية للإخوان | السمع والطاعة |
سري جداً ヅ ";
org.apache.lucene.analysis.TokenStream stream = new
WhitespaceTokenizer(Version.LUCENE_40, new CharSequenceReader(text));
CharTermAttribute termAttr = stream.getAttribute(CharTermAttribute.class);
while (stream.incrementToken()){ System.out.println(termAttr.toString()); }
}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]