在没有 DLL 的情况下在 Delphi 中使用 Curl

发布于 2024-10-17 04:08:53 字数 150 浏览 5 评论 0原文

我有一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

江挽川 2024-10-24 04:08:53

Curl的静态库不能在Delphi中使用。

Curl's static library cannot be used in Delphi.

若沐 2024-10-24 04:08:53

只需使用 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 .

给妤﹃绝世温柔 2024-10-24 04:08:53

您需要 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文