gpt4 book ai didi

ruby-on-rails - rubyzip 未定义方法 `to_binary_dos_time' 为

转载 作者:太空宇宙 更新时间:2023-11-03 16:16:11 26 4
gpt4 key购买 nike

当我尝试使用写入模式打开 zip 文件时,系统会记录以下消息。

完整错误信息:

undefined method `to_binary_dos_time' for 2017-05-30 15:07:21 +0530:Time

回溯:

    ["/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_entry.rb:286:in `write_local_entry'", 
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_output_stream.rb:147:in `block in update_local_headers'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_entry_set.rb:35:in `each'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_entry_set.rb:35:in `each'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_output_stream.rb:145:in `update_local_headers'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_output_stream.rb:64:in `close'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_output_stream.rb:50:in `ensure in open'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_output_stream.rb:50:in `open'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_file.rb:216:in `block in commit'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_file.rb:324:in `on_success_replace'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_file.rb:214:in `commit'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_file.rb:242:in `close'",
"/usr/local/lib/ruby/gems/2.1.0/gems/rubyzip-0.9.9/lib/zip/zip_file.rb:92:in `open'",
"/app/zipper_job.rb:36:in `perform'",

我的代码如下。

path="#{Rails.root}"
new_zip_name= "#{Time.now.to_i.to_s}"
archive = File.join(path,new_zip_name)+'.zip'
Zip::ZipFile.open(archive, 'w') do |zipfile| #Code breaking on this line
#MY Code
end

任何帮助都适用!!提前致谢。

最佳答案

当尝试将 zip 条目的日期时间更改为原始文件日期时间时,rubyzip 和 rzip 中的类似问题:

zf = Zip::File.open("myzipfile.zip", Zip::File::CREATE)
e = zf.add("myfiletozip.txt","myfiletozip.txt") # will set the zipfile date to now
e.time = File.mtime("myfiletozip.txt") # will set it to the original file's

到目前为止一切顺利,但是当关闭 zip 文件时,proc 失败并出现相同的错误。问题在于“time=”在条目中创建了“额外”结构,然后对其进行进一步处理,并且该处理使用了缺失的方法。

但是为什么不设置时间就可以工作呢?没有构建额外的结构,也没有使用缺少的方法。就这么简单。

to_binary_dos_time/date 存在于 Gem 中:dos_time.rb然而,它们似乎被 gem 过程错误地引用了,在我的例子中是 entry.rb

我的规避。我只是将这两个方法复制到我的代码中,从 gem 模块 dos_time.rb 中提取出来。而且 - 奇迹 - 它有效。 gem 程序在本地找到它们并且很高兴。

但是,这个错误应该报告给作者,但我不知道如何。也许有人可以做到这一点?

def to_binary_dos_time
(sec / 2) +
(min << 5) +
(hour << 11)
end

def to_binary_dos_date
day +
(month << 5) +
((year - 1980) << 9)
end
# source copied out of entry.rb in rubizyp gem, in my case:
# c:\Ruby27-x64\lib\ruby\gems\2.7.0\gems\rubyzip-2.3.0\lib\zip\dos_time.rb

关于ruby-on-rails - rubyzip 未定义方法 `to_binary_dos_time' 为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44259104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com