注:机器或服务器上装有word
 
首先需要有jacob.dll和jacob.jar
将jacob.dll放在system32和myeclipse的bin目录下
将jacob.jar放在工程的lib目录下
 
 
然后进行编码操作
import com.jacob.activeX.ActiveXComponent;
import com.jacob.com.Dispatch;
import com.jacob.com.Variant;
 
public class WordToHtml
{
 /**
  * 文档转换函数
  * @param docfile
  * @param htmlfile
  */
 public static void change(String docfile, String htmlfile)
 {
  ActiveXComponent app = new ActiveXComponent("Word.Application"); // 启动word
  try
  {
   app.setProperty("Visible", new Variant(false));
   // 设置word不可见
   Dispatch docs = app.getProperty("Documents").toDispatch();
   Dispatch doc = Dispatch.invoke(
     docs,
     "Open",
     Dispatch.Method,
     new Object[] { docfile, new Variant(false),
       new Variant(true) }, new int[1]).toDispatch();
   // 打开word文件
   Dispatch.invoke(doc, "SaveAs", Dispatch.Method, new Object[] {
     htmlfile, new Variant(8) }, new int[1]);
   // 作为html格式保存到临时文件
   Variant f = new Variant(false);
   Dispatch.call(doc, "Close", f);
  }
  catch (Exception e)
  {
   e.printStackTrace();
  }
  finally
  {
   app.invoke("Quit", new Variant[] {});
  }
 }
 public static void main(String[] strs)
 {
    WordToHtml.change("夏新test.docx", "夏新test.html");
 }
}