我们的系统配置
OS : Windows 2012 server
Ms-office installed : NO
language : Ruby
gem used : win32ole-pp
我们正在使用"gem install win32ole-pp"的Win32ole,下面是读取Excel文件的代码
require 'win32ole'
begin
xl = WIN32OLE.new('Excel.Application')
file = $testdatasheet
file = Dir::pwd + "/#{file}"
wb = xl.workbooks.Open(file)
我们收到以下错误消息
unknown OLE server: `Excel.Application'
HRESULT error code:0x800401f3
Invalid class string (WIN32OLERuntimeError)
./features/step_definitions/read_excel_steps.rb:107:in `initialize'
./features/step_definitions/read_excel_steps.rb:107:in `new'
./features/step_definitions/read_excel_steps.rb:107:in `get_recordcount'
./features/support/env.rb:95:in `Around'
我的问题
我们是否需要安装女士办公室作为先决条件
我们是否有任何其他解决方案,然后安装Ms-office
。
win32ole gem基本上是使用Windows的OLE机制安装在系统上的外部库的接口。除了它提供的可访问性之外,它本身不会带来任何实际功能。
现在,在您的代码中,您将使用 Excel.Application
库访问 Excel 提供的功能。除非您安装了 Excel,否则无法使用此功能,因为它不存在。
因此,唯一的解决方案确实是在运行Ruby代码的计算机上安装Excel。如果不希望这样做,您可以更新代码以改用 LibreOffice(或其派生版本之一),并使用其功能来操作 Excel 文件。