PdfPTable table = new PdfPTable(1);
table.setWidthPercentage(10);
Phrase phrase = new Phrase();
phrase.setHyphenation(new HyphenationAuto("ru", "ru", 2,2));
phrase.add(new Chunk("привет мир ",font3));
table.addCell(phrase);
document.add(table);
测试显示不正确!
我可以将“ ru”应用于断字吗?
答案 0 :(得分:1)
您可以如下创建一个新的HyphenationAuto(String lang, String country, int leftMin, int rightMin)
对象:
lang
-语言(例如,英语为“ en”)country
-国家(例如,“ GB”代表英国,“ none”代表没有国家)leftMin
-连字符前的最小字母数rightMin
-连字符后的最小字母数在摘要中,您可以使用ru
作为俄语的国家/地区代码。