使用 gem Curb (curl) 下载文件

发布于 2024-10-24 02:41:15 字数 291 浏览 3 评论 0原文

我知道我可以使用 RubyGem Curb 来满足将文件卷曲到计算机的需求。但我不知道如何实际“触摸”该文件。这是我到目前为止所得到的,

include 'rubygems'
include 'curb'

curl = Curl::Easy.new('http://wordpress.org/latest.zip')
curl.perform

我想我明白 perform 实际上下载了文件。但之后我如何与该文件进行交互呢?下载到哪里了?

问候, 马蒂亚斯

I have understood that I could use the RubyGem Curb to fulfill my needs of curl'ing down a file to my computer. But I cannot figure out how to actually "touch" the file. This is what I have got so far

include 'rubygems'
include 'curb'

curl = Curl::Easy.new('http://wordpress.org/latest.zip')
curl.perform

I think I understand that perform actually downloads the file. But how can I interact with the file afterwards? Where is it downloaded to?

Regards,
Mattias

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

提笔落墨 2024-10-31 02:41:15

可以使用 body_str 方法访问该文件。

puts curl.body_str

The file can be accessed with the body_str method.

puts curl.body_str
装纯掩盖桑 2024-10-31 02:41:15

检查文档 http://rdoc.info/gems/curb/0.7.15/。

执行后,内容在例如curl.body_str中。

Check the docs at http://rdoc.info/gems/curb/0.7.15/.

After perform, the content is in e.g. curl.body_str.

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