如何通过Java程序运行add函数并将输出存储为变量?
可能类似于以下内容:
public int runHaskell(String haskellFile) { int output; //run add function from file 'math.hs' and store result to output return output; }
(如果需要,我还可以访问目标文件:math.o和解释器文件math.hi以及可执行文件main.exe.)
Runtime.exec()
然后你可以监听Haskell程序的输出,然后解析它的结果.
或者,您可以为JNI编写一个小包装器,直接调用您的Haskell内容.