如何在xml文件中添加用于断字的iText7?

时间:2018-06-29 13:12:52

标签: java itext itext7 hyphen hyphenation

我正在努力处理iText 7的连字符问题。我尝试将自定义xml文件myHypheationFile.xml添加到iText Hyphenator class的字符处。
xml文件基于类路径根目录。代码是:

Map<String, String> customHyphenationFiles = new HashMap<>();
customHyphenationFiles.put("de_DE","/myHypheationFile.xml");
Hyphenator h = new Hyphenator("de", "DE", 2, 2, myHypheationFile.xml);

但是此代码不起作用。它只是使用iText标准连字文件来连字。

如果有人能向我解释如何正确使用iText的功能,那就太好了。

0 个答案:

没有答案