JAVA 使用Jacob.jar和Jacob.dll将excel转换成html,出现“DDE SERVER WINDOW:EXCEL.EXE”错误!求解答!
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA 使用Jacob.jar和Jacob.dll将excel转换成html,出现“DDE SERVER WINDOW:EXCEL.EXE”错误!求解答!相关的知识,希望对你有一定的参考价值。
我现在利用Jacob.jar与Jacob.dll实现报表上传后转换成html功能,可
以成功的将word转换成为html形,刚开始用一段时间的时候还可以把
excel转换成html,但用一段时间后就转换失败了,提示如上所示,
office重新装过之后,在一段时间可以转换成功,但后来又是出现这个
错误!!!!请高手指点哪里会存在问题,或者有没有其他转换的方法
!!!多谢!!!!!!!!!!
有新发现,直接打开tomcat6,就会出现上边的错误,用myeclipse打开本机上的tomcat(非myeclipse自带tomcat)就没有问题,纠结中,总不能让myeclipse一直开着吧,这内存占的。。。。。。。
try
// path是指欲下载的文件的路径。
File file = new File(path);
// 取得文件名。
String filename = file.getName();
// 取得文件的后缀名。
String ext = filename.substring(filename.lastIndexOf(".") + 1).toUpperCase();
// 以流的形式下载文件。
InputStream fis = new BufferedInputStream(new FileInputStream(path));
byte[] buffer = new byte[fis.available()];
fis.read(buffer);
fis.close();
// 清空response
response.reset();
// 设置response的Header
response.addHeader("Content-Disposition", "attachment;filename=" + new String(filename.getBytes()));
response.addHeader("Content-Length", "" + file.length());
OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
response.setContentType("application/octet-stream");
toClient.write(buffer);
toClient.flush();
toClient.close();
catch (IOException ex)
ex.printStackTrace();
return response;
参考技术B Jacob.dll没有添加到path中 你把Jacob.dll放到jdk/bin 下面试试
另 求你实现这个功能的代码 thank you
753008965@qq.com
JAVA 实现Jacob语音播报
准备工作:下载Jar
链接:https://pan.baidu.com/s/1edskJjYrCiefVJ7l3Ul9kQ 提取码:6dg9
---导入jar
解压jar包,将jacob.jar复制到工程目录,右键该文件→Build Path→Add to...
将(64位系统添加)jacob-1.19-M2-x64.dll添加到JDK的bin目录和Windows的system32目录和SysWOW64 (以防出错添加)(32位系统添加jacob-1.19-M2-x86.dll)
添加到SysWOW
添加到System32
如果用Maven jacob.jar上传自己私服,添加到本地Maven仓库中
mvn install:install-file -Dfile=D:\\BaiduNetdiskDownload\\jacob-1.19\\jacob.jar -DgroupId=com.jacob -DartifactId=jacob -Dversion=1.19
-Dpackaging=jar
mvn install:install-file -Dfile=jar包地址 -DgroupId=mavengroupId仓库目录 -DartifactId=artifactId目录 -Dversion=version版本
-Dpackaging=jar
POM文件
<dependency> <groupId>cn.jacob</groupId> <artifactId>jacob</artifactId> <version>1.19</version> </dependency>
javaDemo
package com; import com.jacob.activeX.ActiveXComponent; import com.jacob.com.Dispatch; import com.jacob.com.Variant; public class TestJacob public static void main(String[] args) // 创建与微软应用程序的新连接。传入的参数是注册表中注册的程序的名称。 ActiveXComponent sap = new ActiveXComponent("Sapi.SpVoice"); try // 音量 0-100 sap.setProperty("Volume", new Variant(100)); // 语音朗读速度 -10 到 +10 sap.setProperty("Rate", new Variant(-2)); // 获取执行对象 Dispatch sapo = sap.getObject(); // 执行朗读 Dispatch.call(sapo, "Speak", new Variant("请A10012,到四号窗口就诊。")); // 关闭执行对象 sapo.safeRelease(); catch (Exception e) e.printStackTrace(); finally // 关闭应用程序连接 sap.safeRelease();
demo2
package com.jeeplus.common.utils; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import com.jacob.activeX.ActiveXComponent; import com.jacob.com.Dispatch; import com.jacob.com.Variant; public class TalkUtil public static void main(String[] args) throws Exception talkString("你好,很高兴认识你。"); // talkText("C:/aa.txt"); public static void talkString(String talk) ActiveXComponent sap = new ActiveXComponent("Sapi.SpVoice"); try // 音量 0-100 sap.setProperty("Volume", new Variant(100)); // 语音朗读速度 -10 到 +10 sap.setProperty("Rate", new Variant(-2)); // 获取执行对象 Dispatch sapo = sap.getObject(); // 执行朗读 Dispatch.call(sapo, "Speak", new Variant(talk)); // 关闭执行对象 sapo.safeRelease(); catch (Exception e) e.printStackTrace(); finally // 关闭应用程序连接 sap.safeRelease(); public static void talkText(String path) throws Exception ActiveXComponent sap = new ActiveXComponent("Sapi.SpVoice"); // 输入文件 File srcFile = new File(path); // 使用包装字符流读取文件 BufferedReader br = new BufferedReader(new FileReader(srcFile)); String content = br.readLine(); try // 音量 0-100 sap.setProperty("Volume", new Variant(100)); // 语音朗读速度 -10 到 +10 sap.setProperty("Rate", new Variant(-1)); // 获取执行对象 Dispatch sapo = sap.getObject(); // 执行朗读 while (content != null) Dispatch.call(sapo, "Speak", new Variant(content)); content = br.readLine(); // 关闭执行对象 sapo.safeRelease(); catch (Exception e) e.printStackTrace(); finally br.close(); // 关闭应用程序连接 sap.safeRelease();
以上是关于JAVA 使用Jacob.jar和Jacob.dll将excel转换成html,出现“DDE SERVER WINDOW:EXCEL.EXE”错误!求解答!的主要内容,如果未能解决你的问题,请参考以下文章