在没有 DLL 的情况下在 Delphi 中使用 Curl
我有一个Delphi程序,我需要在其中使用Curl,但我不想用它重新分发curl DLL(并且我不想将DLL添加为资源并在运行时将其写入文件并执行此操作那样)。使用 Curlpas 库,您必须使用 DLL。有没有办法在 Delphi 中使用 Curl,就像在 C++ 中使用静态库一样?
I have a Delphi program in which I need to use Curl, but I do not want to redistribute the curl DLL with it (and I don't want to add the DLL as a resource and write it to a file at runtime and do it that way). With the Curlpas library, you have to use the DLL. Is there any way to use Curl with Delphi in the same way you can do it in C++, with the static library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Curl的静态库不能在Delphi中使用。
Curl's static library cannot be used in Delphi.
只需使用 CURL for Windows ,放入 Windows 文件夹中
http://curl.haxx.se/dlwiz/?type =bin&os=Win64&flav=-
并尝试使用 Delphi 使用控制台方法调用它。
Just use CURL for Windows , put in the Windows folder
http://curl.haxx.se/dlwiz/?type=bin&os=Win64&flav=-
and try to call it using console method using Delphi .
您需要
curl
还是只需要执行 HTTP 请求?如果是后者,您可以使用其他组件,例如 Indy 组件。 TIdHTTP 允许您在一行中执行 GET 和 POST 请求。它胜过必须从命令行调用 cUrl,除非您需要 Indy 不提供的某些特定功能。
Do you need
curl
or do you need just to perform HTTP requests?If the latter, you can other component, like those made by Indy components. TIdHTTP allows you to perform GET and POST requests in a single line. It beats having to call cUrl from the command line, unless you need some specific features that Indy doesn't supply.