We are trying to break Japanese sentences into words using BreakIterator by following the code in this question. This code is working fine only for the text which is given in the question and when we try giving a different text e.g "速い茶色のキツネは怠惰な犬を飛び越えます" it is unable to break the words.
What could be the issue?
BreakIterator.getSentenceInstance(Locale.JAPAN)
in this question breaks a Japanese script into sentences, rather than words. Usually, the Japanese language is written without punctuation to separate words.You have to use a morphological analyzer to break a sentence into words. For example, you can use a Java port of TinySegmenter.