81,122
社区成员




public ActionForward list(ActionMapping mapping, ActionForm form, HttpServletRequest request,
HttpServletResponse response) {
System.loadLibrary("SpeechTransform");
SpeechTransform test = new SpeechTransform();
int result = test.transform_text_to_speech("用户可通过互联网、移动互联网,使用任何设备、在任何时间、任何地点,随时随地享受开放平台提供的全方位的人工智能服务。", "D:/test.pcm",
"xiaoyan", 50, 50, 50);
System.out.println("Java call cpp dll result:" + result);
return null;
}