Java based tools are :
Apache Tika : not "all" language profiles, but you can add them yourself
public String detectLangTika(String text) throws SystemException {
LanguageIdentifier li = new LanguageIdentifier(text);
if (li.isReasonablyCertain())
return li.getLanguage();
else
throw new Exception("Tika lang detection not reasonably certain");
}
language-detection : A lot of language profiles, works great for me.
DetectorFactory.loadProfile(new File(LangDetector.class.getClassLoader().getResource("profiles").toURI()));
public String detectLangLD(String text) throws SystemException {
Detector detector;
String lang;
try {
detector = DetectorFactory.create();
detector.append(text);
lang = detector.detect();
} catch (LangDetectException e) {
throw new SystemException("LangDetector Failure", e);
}
return lang;
}
The most precise tool is Google API lang detection, though I'm not sure how long it will exist. You just code a light httpclient.