Я надеялся, что кто-то может помочь с внедрением TeXHyphenator-J с использованием CFML.JAVA Hyphenator using Coldfusion
Я использую JavaLoader.cfc для создания объекта ColdFusion TeXHyphenator-J (как в коде ниже). При запуске кода я не получаю никаких ошибок и возвращается строка. Однако он не переносится?
<!--- Load Javaloader --->
<cfset paths = arrayNew(1)>
<cfset paths[1] = expandPath("assets/Hyphenator/texhyphj.jar")>
<cfset loader = createObject("component", "assets.javaloader.JavaLoader").init(paths)>
<!--- Create buffered stream to TeX file --->
<cfset FileInputStream = createobject("java", "java.io.FileInputStream").init(expandPath("assets/Hyphenator/hyphen.tex"))>
<cfset BufferedInputStream = createobject("java","java.io.BufferedInputStream").init(FileInputStream)>
<!--- Initiate Hyphenator --->
<cfset h = loader.create('net.davidashen.text.Hyphenator').init()>
<!--- load the TeX table into Hyphenator --->
<cfset h.loadTable(BufferedInputStream)>
<!--- Get hyphenated string, Hyphenator should return as-so-ci-ate --->
<cfset retStr = h.hyphenate('associate')>
<cfdump var="#retStr#">