1
下記のフォーマットの代わりに、すでに修正されたテキストを出力したいと思います。私は、検索エンジンのために、「もしかして」を作成するために必要なときに私はこの問題に出くわしたJava言語ツールでの提案の自動適用
JLanguageTool langTool = new JLanguageTool(new BritishEnglish());
List<RuleMatch> matches = langTool.check("A sentence with a error in the Hitchhiker's Guide tot he Galaxy");
for (RuleMatch match : matches) {
System.out.println("Potential error at characters " +
match.getFromPos() + "-" + match.getToPos() + ": " +
match.getMessage());
System.out.println("Suggested correction(s): " +
match.getSuggestedReplacements());
}
ので、出力は以下のようにする必要があります「というエラーと文......」