Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Language recognition in Java [closed]

Is there any language recognition open-source for Java? Found only for c/c++.

UPD:

I`m talking about human text language. Example:

Input: My name is John. Output: English.

Input: Ich heisse John. Output: German.

Input: Меня зовут Джон. Output: Russian.

like image 403
Yurish Avatar asked Feb 22 '10 11:02

Yurish


1 Answers

See what you think of the version in Apache Tika. This assumes that you want to find out what language text is in, as opposed to wanting to build a parser for a programming language.

like image 162
bmargulies Avatar answered Oct 14 '22 16:10

bmargulies