delphi
两岁半
这个作者很懒,什么都没留下…
展开
-
Delphi调用百度语言合成Api
unit Unit3;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Idhttp, IdMul...原创 2019-12-24 17:55:15 · 486 阅读 · 1 评论 -
Delphi接入科大讯飞语音合成SDK
一、下载科大讯飞Win版本SDK二、将SDK中的bin目录下的资源文件拷贝值新建工程目录,并建立dll引入单元,将c++dll头文件转成delphiunit UnitXF;interfaceconst HDANET_DLL = 'msc.dll';type wave_pcm_hdr = record riff: array [0 .. 3] of AnsiCh...原创 2019-12-23 18:52:41 · 4428 阅读 · 5 评论 -
Delphi websocket Client 调用Java websocket Server
一、Delphi使用websocket需要下面的开源库:地址:https://github.com/andremussche/DelphiWebsockets二、建立SpringBoot的websocket服务端:这方面资料比较多,大家随便搜搜,我以下面的博友为例请参照:https://blog.csdn.net/huiyunfei/article/details/90719351...原创 2019-11-04 16:02:00 · 2799 阅读 · 0 评论 -
Electron调用Delphi窗体Dll
一、环境准备:调用Dll需要安装node-ffi-napi,由于node-ffi-napi包含 C 原生代码,所以安装需要配置 Node 原生插件编译环境https://github.com/node-ffi-napi/node-ffi-napinpm install --global --production windows-build-toolsnpm install -g no...原创 2019-10-12 18:00:09 · 919 阅读 · 0 评论 -
关于android UDP 客户端与delphi UDP服务端通讯中文乱码问题
废话不多直接上android发送代码: String message = “这是一个中文测试”; // 这里是重点,要将字符串进行Base64加密 message = Base64.encodeToString(message.getBytes(), Base64.DEFAULT); int server_port = 12345;原创 2016-07-06 09:27:50 · 1925 阅读 · 0 评论 -
Delphi通过ICMP检测与远程主机连接
原文 FIPAddress:=inet_addr(PChar(HostIP)); 编译出错 我改为了FIPAddress := inet_addr(PAnsiChar(AnsiString(HostIP)));转载地址:http://www.cnblogs.com/tc310/p/4359887.html转载 2016-07-06 10:15:34 · 925 阅读 · 1 评论