我尝试用 Java 和 Tesseract 为 Mirth 做一个 ocr 应用程序。我将项目导出到 jar 文件中,并用 Javascript 调用 Mirth,它做了一个 hello world 应用程序。我相信我以正确的方式添加 jar 文件。但是我有一个问题在 Java OCR 中,所以我得到了这个错误,
错误 (com.mirth.connect.connectors.js.JavaScriptDispatcher:193):评估 JavaScript 编写器时出错(通道 b469e5af-a78d-41ca-86a0-a7b507799a4d 上的 JavaScript 编写器“RTF>DCM”)。java.lang.NoClassDefFoundError: net/sourceforge/tess4j/TesseractException
package com.imagerad.ocr;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import net.sourceforge.tess4j.ITesseract;
import net.sourceforge.tess4j.Tesseract;
import net.sourceforge.tess4j.TesseractException;
public class JavaOCRTest {
static String Tc;
static String phone;
static String date;
public static void main(String[] args) throws IOException{
}
public String returnText(String fileName) throws IOException{
Files.walk(Paths.get(fileName)).forEach(filePath -> {
if (Files.isRegularFile(filePath)) {
File imageFile = filePath.toFile();
ITesseract instance = new Tesseract();
try {
String result = instance.doOCR(imageFile);
int i=result.indexOf("Numarasn: ");
int j=result.indexOf("Tel No:");
int k=result.indexOf("Bilgllendirme Tarihl:");
Tc = result.substring(i+10, i+22);
phone = result.substring(j+8,j+23);
date = result.substring(k+22,k+32);
} catch (TesseractException e) {
System.err.println(e.getMessage());
}
}
});
return Tc+""+phone+""+date;
}
public String returnTC() throws IOException{
return Tc;
}
public String returnPhone() throws IOException{
return phone;
}
public String returnDate() throws IOException{
return date;
}
}
非常感谢您的帮助。