0
현재 트위트 언어를 인식하는 방법을 찾고 있습니다. 아파치 라이브러리 tika를 발견했지만 잘 작동하지 않습니다 ... 이제 langdetect를 발견했으며이를 사용하려고합니다. documentation에서 ...LangDetect 프로필이란 무엇입니까?
String path = "my path to the file profiles";
DetectorFactory.loadProfile(path);
detector = DetectorFactory.create();
detector.append(tweet);
langDetected = detector.detect();
에있는 저장소에 감사합니다! 그것은 작동합니다. jar 파일에서 프로파일을 추출해야했습니다. – Arya