You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

libstemmer_java_README 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. libstemmer_java
  2. ===============
  3. This document pertains to the Java version of the libstemmer distribution,
  4. available for download from:
  5. http://snowball.tartarus.org/dist/libstemmer_java.tgz
  6. Compiling the library
  7. =====================
  8. Simply run the java compiler on all the java source files under the java
  9. directory. For example, this can be done under unix by changing directory into
  10. the java directory, and running:
  11. javac org/tartarus/snowball/*.java org/tartarus/snowball/ext/*.java
  12. This will compile the library and also an example program "TestApp" which
  13. provides a command line interface to the library.
  14. Using the library
  15. =================
  16. There is currently no formal documentation on the use of the Java version
  17. of the library. Additionally, its interface is not guaranteed to be
  18. stable.
  19. The best documentation of the library is the source of the TestApp example
  20. program.
  21. The TestApp example
  22. ===================
  23. The TestApp example program allows you to run any of the stemmers
  24. compiled into the libstemmer library on a sample vocabulary. For
  25. details on how to use it, run it with no command line parameters.