1

我正在尝试将 tess4j 用于我的项目。我在论坛中环顾四周并将dll放在项目中。tessdata 文件夹也已到位。

我得到一个:Exception in thread "main" java.lang.UnsatisfiedLinkError: The specified module could not be found.

有人可以帮我解决这个问题。

4

2 回答 2

1

也许你需要安装 windows vs,Tesseract DLL 是用 VS2013 构建的,因此依赖于 Visual C++ Redistributable Packages,如果你想知道哪个版本,请检查 tess4j.jar 和 readme.html 文件。祝你好运

于 2015-07-20T09:26:42.493 回答
0

如果您使用 eclipse,请将以下VM 参数添加到您的运行配置中。
您必须确保 dll 文件位于项目根文件夹中。我刚刚将其命名为 dll。您还必须将下面一行中的 your_project_name 替换为项目的实际名称:

Djna.library.path=${workspace_loc:/your_project_name}/dlls
于 2017-06-22T11:02:39.467 回答