Questions tagged [languagetool]

Languagetool is a Java based Open Source style and grammar checker

LanguageTool is a proof-reading tool for English, German, Polish, Chinese, French, Dutch, Russian, Italian, Danish and more languages (see http://www.languagetool.org/languages/ for a list). It is based on a Diploma Thesis around which an open source community was created.

Links

83 questions
54
votes
8 answers

Looking for Java spell checker library

I am looking for an open source Java spell checking library which has dictionaries for at least the following languages: French, German, Spanish, and Czech. Any suggestion?
avernet
  • 30,895
  • 44
  • 126
  • 163
22
votes
2 answers

How to add two-word patterns to be ignored by LanguageTool?

Situation: As a workaround for the not yet implemented feature to add a user dictionary of words to Languagetool, I came up with this code snippet: JLanguageTool langTool = new JLanguageTool(lang); langTool.activateDefaultPatternRules(); List
Wolfgang Fahl
  • 15,016
  • 11
  • 93
  • 186
14
votes
4 answers

Open source spell check

Was evaluating adding spell check to a product I own. As per my research the major decisions that need to be made: The library to use. Dictionary( this can be region specific, British english, American etc). Exclusion lists. Anytime a typo is…
HeretoLearn
  • 7,124
  • 6
  • 24
  • 22
8
votes
8 answers

Is there a free library for morphological analysis of the German language?

I'm looking for a library which can perform a morphological analysis on German words, i.e. it converts any word into its root form and providing meta information about the analysed word. For example: gegessen -> essen wurde [...] gefasst ->…
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
7
votes
6 answers

Spell check and/or spell correction in Java

How can I do spell checking and/or spell correction in a Java application?
Ronaldinho Learn Coding
  • 13,254
  • 24
  • 83
  • 110
6
votes
2 answers

In LanguageTool, how do you create a dictionary and use it for spell checking?

How do you create a dictionary for spell checking with Language Tool? I'm not a Java programmer and it was the first time I saw LT.
KeyPi
  • 516
  • 5
  • 20
5
votes
2 answers

Add words to languagetool suggesting list

I use LanguageTool for some spellchecking and spell correction functionality in my application. The LanguageTool documentation describes how to exclude words from spell checking (with call the addIgnoreTokens(...) method of the spell checking rule…
Simplex
  • 1,723
  • 2
  • 17
  • 26
3
votes
1 answer

language check tool in chaquopy

I am using this file to check the grammar of the document in an Android application but it gives me error message in the language tool. I am using tool = language_check.LanguageTool('en-US') tool to check the grammar. The error message image in…
Noman Omer
  • 53
  • 1
  • 4
3
votes
0 answers

language-check OSError: [WinError 87] The parameter is incorrect

I've encountered a problem when attempting to use the language-tool package for Python. This same error also occurs when using the language-check package. It seems apparent to me that the issue has got to do with the language-tool package itself, as…
clockelliptic
  • 455
  • 4
  • 14
3
votes
2 answers

No such compiler 'javac' in maven

I am trying to build a project using Maven but I am always getting this error: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project languagetool-core: No such compiler 'javac'. -> [Help…
3
votes
2 answers

How do I build this Maven project from source?

I want to build the LanguageTool Java project from source. This page gives basic instructions for obtaining the "Maven artifact" with all the sources: http://languagetool.org/java-api/ I'm an expert Java developer but I've never used Maven before.…
Barry Fruitman
  • 12,316
  • 13
  • 72
  • 135
3
votes
1 answer

Detecting meaningless and/or grammatically incorrect sentence with LanguageTool

I need to check spells and grammars in texts so I started using LanguageTool API (Can be found here). Now, when I am writing the start-up code provided by them as follows- JLanguageTool langTool = new…
Rushdi Shams
  • 2,423
  • 19
  • 31
3
votes
3 answers

Java API that check portuguese grammar from openOffice or Microsoft Office

I'm working on a journalist project in Brazil, so I need to find a Java API that is able to check spelling and grammar documents from Open Office or Microsoft word document. I did some research on google and found some cool API like LanguageTools…
Rafael Paz
  • 497
  • 7
  • 22
2
votes
1 answer

Jlanguage does not implement the requested interface java.util.function.Supplier

CODE: Same code with out Microservice(Run as main class) giving correct output but after making it @service class(converting into microservice), it fails. I still do not know which supplier I have to implement. getSuggestedReplacements() has…
Yashika Chandra
  • 163
  • 3
  • 13
2
votes
1 answer

Open source spell checking library for Java

I am looking for free and open source spell checking libraries (could check whether spelling is correct for a given string, and any suggested corrections for a mis-spelled string), which could be easily integrated into Java program on Linux. English…
George2
  • 44,761
  • 110
  • 317
  • 455
1
2 3 4 5 6