Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 1.49 KB

README.md

File metadata and controls

51 lines (41 loc) · 1.49 KB

Build Status

About

extJWNL (Extended Java WordNet Library) is a Java API for creating, reading and updating dictionaries in WordNet format. extJWNL supports:

  • writing dictionaries
  • encodings (including UTF-8)
  • Java generics
  • huge dictionaries
  • instance dictionaries
  • Maven support
  • documentation improvements
  • improved unit test coverage
  • enhanced database support
  • simplified configuration
  • multiple other improvements and fixes

Getting started

In the pom.xml:

<dependency>
    <groupId>net.sf.extjwnl</groupId>
    <artifactId>extjwnl</artifactId>
    <version>1.9</version>
</dependency>
<dependency>
    <groupId>net.sf.extjwnl</groupId>
    <artifactId>extjwnl-data-wn31</artifactId>
    <version>1.2</version>
</dependency>

In the code:

Dictionary d = Dictionary.getDefaultResourceInstance();

extJWNL contains Examples.java with examples of API use.

Resources