Does J2ME supports Apache Lucene?
Is it possible to use apache lucene in J2ME applicat开发者_开发百科ion? If yes, then say me procedure? can we use lucene's jar file in j2me application? how?
Definitively not. Lucene is a framework conceived for JavaSE, and using JavaSE specific classes, as you can see in the class below, using ArrayList and Iterable, which don"t exist in JavaME:
http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/document/Document.java?view=markup
精彩评论