我有一个c#dll文件,其中包含我需要在某些java应用程序中使用的特定类。
这就是我在c#程序中使用它的方式:
using Lemmatizer; // this comes from my dll
private void Test(string inputText) {
output = (new StemmingTools()).LemmatizeText(inputText, LevelOfLemmatizer.First, false);
// StemmingTools class placed in the dll
}
如何在我的java程序中使用LemmatizeText函数?
我已经使用过jna库,但它失败了,从dll中实例化了StemmingTools对象。