• 大小: 1.25MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-23
  • 语言: Java
  • 标签: java  MODI  jacob  

资源简介

java小程序通过jacob包调用com组件来实现java调用office的MODI功能来识别图片中的文字

资源截图

代码片段和文件信息

import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Variant;
import com.jacob.com.Dispatch;
public class Ocr {
 String strDir = “G:\\BD\\temp.jpg“;
 boolean isVisible = true;
 public  String GetOcrString()
 {
 ActiveXComponent ocr = new ActiveXComponent(“MODI.Document“);
 Dispatch.call(ocr “Create“strDir);
 Dispatch.call(ocr “OCR“2052truetrue);
 Dispatch images = ocr.getProperty(“Images“).toDispatch();
 Variant count=Dispatch.get(images “Count“);
 String name=““;
 for(int i=0;i  {
 Dispatch image=Dispatch.call(images “Item“ new Variant(i)).toDispatch();
 Dispatch layout=Dispatch.call(image “Layout“).toDispatch();
 Variant text=Dispatch.get(layout“Text“);
             name+=text.toString();
 }
  String str=“t:“+name; 
 return str;

 }
 public static void main(String[] args) {
 Ocr c=new Ocr();
 String str=c.GetOcrString();
 System.out.print(“\n返回:“+str);
 
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2014-06-24 09:21  com\
     文件         395  2014-06-24 09:28  com\.classpath
     文件         379  2013-08-07 20:37  com\.project
     目录           0  2014-06-13 11:26  com\.settings\
     文件         598  2013-08-07 20:37  com\.settings\org.eclipse.jdt.core.prefs
     文件      139264  2013-08-07 21:07  com\ICSharpCode.SharpZipLib.dll
     文件       24576  2013-08-07 21:07  com\Openxml2Text.dll
     文件     1450496  2013-08-07 21:07  com\TextExtractor.dll
     目录           0  2014-06-27 14:18  com\bin\
     文件        2255  2014-06-27 14:17  com\bin\Ocr.class
     文件        2793  2014-06-24 09:28  com\bin\Word.class
     文件       47763  2013-08-07 20:40  com\bin\jacob.jar
     文件      217600  2013-08-07 20:56  com\jacob-1.17-x64.dll
     文件      176128  2013-08-03 06:30  com\jacob-1.17-x86.dll
     目录           0  2014-06-13 11:26  com\lib\
     文件       47763  2013-08-07 20:40  com\lib\jacob.jar
     文件      659456  2013-08-07 21:07  com\pdftool.dll
     目录           0  2014-06-27 14:18  com\src\
     文件         999  2014-06-27 14:17  com\src\Ocr.java
     文件        2113  2014-06-16 18:03  com\src\Word.java

评论

共有 条评论