我正在努力处理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的功能,那就太好了。