出于测试目的,我想将axlsx电子表格序列化为字符串。axlsx documentation表示可以“输出到文件或stringio”。但我还没有找到说明如何输出到stringio的文档或代码示例。怎么做的?

最佳答案

From thecode

# Serialize to a stream
s = package.to_stream()
File.open('example_streamed.xlsx', 'w') { |f| f.write(s.read) }

10-07 21:23