jacob 详解 语音_JAVA 实现Jacob语音播报

本文介绍了如何在JAVA中利用Jacob库进行语音播报。首先,需要下载并导入Jacob.jar及对应的dll文件到系统和JDK目录。接着,通过ActiveXComponent创建与SAPI的连接,设置音量和速度,然后调用Speak方法进行文字朗读。提供了两个示例,一个是直接读取字符串进行播报,另一个是从文本文件中读取内容进行朗读。
摘要由CSDN通过智能技术生成

准备工作:下载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

40b2787c556865da4e0e0602b048bfa6.png

添加到System32

0a16b67103731a590201566eb5bfc80c.png

如果用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

04c3fc3b3c422006627e8b1016b9abae.png

e9ca9e724ab459e3d0dc6227c1b10520.png

POM文件

cn.jacob

jacob

1.19

javaDemo

packagecom;importcom.jacob.activeX.ActiveXComponent;importcom.jacob.com.Dispatch;importcom.jacob.com.Variant;public classTestJacob {public static voidmain(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

packagecom.jeeplus.common.utils;importjava.io.BufferedReader;importjava.io.File;importjava.io.FileNotFoundException;importjava.io.FileReader;importjava.io.IOException;importcom.jacob.activeX.ActiveXComponent;importcom.jacob.com.Dispatch;importcom.jacob.com.Variant;public classTalkUtil {public static void main(String[] args) throwsException {

talkString("你好,很高兴认识你。");//talkText("C:/aa.txt");

}public static voidtalkString(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", newVariant(talk));//关闭执行对象

sapo.safeRelease();

}catch(Exception e) {

e.printStackTrace();

}finally{//关闭应用程序连接

sap.safeRelease();

}

}public static void talkText(String path) throwsException {

ActiveXComponent sap= new ActiveXComponent("Sapi.SpVoice");//输入文件

File srcFile = newFile(path);//使用包装字符流读取文件

BufferedReader br = new BufferedReader(newFileReader(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", newVariant(content));

content=br.readLine();

}//关闭执行对象

sapo.safeRelease();

}catch(Exception e) {

e.printStackTrace();

}finally{

br.close();//关闭应用程序连接

sap.safeRelease();

}

}

}

jacob实现语音播报 将附件jacob.dll放到system32文件夹下 <!-- https://mvnrepository.com/artifact/com.jacob/jacob 文字转语音 --> com.hynnet jacob 1.18 /** * 语音转文字并播放 * * @param text */ public void textToSpeech(String text) { ActiveXComponent ax = null; try { ax = new ActiveXComponent("Sapi.SpVoice"); // 运行时输出语音内容 Dispatch spVoice = ax.getObject(); // 音量 0-100 ax.setProperty("Volume", new Variant(100)); // 语音朗读速度 -10 到 +10 ax.setProperty("Rate", new Variant(-2)); // 执行朗读 Dispatch.call(spVoice, "Speak", new Variant(text)); // // 下面是构建文件流把生成语音文件 // // ax = new ActiveXComponent("Sapi.SpFileStream"); // Dispatch spFileStream = ax.getObject(); // // ax = new ActiveXComponent("Sapi.SpAudioFormat"); // Dispatch spAudioFormat = ax.getObject(); // // // 设置音频流格式 // Dispatch.put(spAudioFormat, "Type", new Variant(22)); // // 设置文件输出流格式 // Dispatch.putRef(spFileStream, "Format", spAudioFormat); // // 调用输出 文件流打开方法,创建一个.wav文件 // Dispatch.call(spFileStream, "Open", new Variant("./text.wav"), new Variant(3), new Variant(true)); // // 设置声音对象的音频输出流为输出文件对象 // Dispatch.putRef(spVoice, "AudioOutputStream", spFileStream); // // 设置音量 0到100 // Dispatch.put(spVoice, "Volume", new Variant(100)); // // 设置朗读速度 // Dispatch.put(spVoice, "Rate", new Variant(-2)); // // 开始朗读 // Dispatch.call(spVoice, "Speak", new Variant(text)); // // // 关闭输出文件 // Dispatch.call(spFileStream, "Close"); // Dispatch.putRef(spVoice, "AudioOutputStream", null); // // spAudioFormat.safeRelease(); // spFileStream.safeRelease(); // spVoice.safeRelease(); // ax.safeRelease(); } catch (Exception e) { e.printStackTrace(); } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值