ruby – 使用字符串到文件名

ruby – 使用字符串到文件名,第1张

概述我正在尝试从字符串中输入文件名,但不能. 这很好用: #!/usr/bin/rubyrequire 'httpclient'http2 = HTTPClient.newresponse = http2.get_content("http://example.com/version.ini")response.each_line do | line | http = HTTPC 我正在尝试从字符串中输入文件名,但不能.

这很好用:

@H_502_13@#!/usr/bin/rubyrequire 'httpclIEnt'http2 = httpClIEnt.newresponse = http2.get_content("http://example.com/version.ini")response.each_line do | line | http = httpClIEnt.new my_file = open('file.zip','wb') my_file.write(http.get_content("http://example.com/data.zip"))endputs "Done."

但这不是:

@H_502_13@#!/usr/bin/rubyrequire 'httpclIEnt'http2 = httpClIEnt.newresponse = http2.get_content("http://example.com/version.ini")response.each_line do | line | puts line # -> file.zip http = httpClIEnt.new my_file = open(line,'wb') my_file.write(http.get_content("http://example.com/data.zip"))endputs "Done."

安慰:

C:/Ruby22-x64/lib/ruby/2.2.0/open-uri.rb:36:in initialize': InvalID
argument @ rb_sysopen - file.zip (Errno::EINVAL)
from C:/Ruby22-x64/lib/ruby/2.2.0/open-uri.rb:36:in
open’
from C:/Ruby22-x64/lib/ruby/2.2.0/open-uri.rb:36:in open'
from launcher.rb:10:in
block in ‘
from launcher.rb:7:in each_line'
from launcher.rb:7:in

解决方法 问题是使用换行符char,尝试剥离它.

@H_502_13@my_file = open(line.chomp,'wb') 总结

以上是内存溢出为你收集整理的ruby – 使用字符串到文件名全部内容,希望文章能够帮你解决ruby – 使用字符串到文件名所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1270558.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-08
下一篇 2022-06-08

发表评论

登录后才能评论

评论列表(0条)

保存