Ruby를 사용하여 Excel 스프레드 시트 파일을 읽으려고하지만 파일 내용을 읽지 않습니다.Ruby를 사용하여 Excel 스프레드 시트의 내용을 읽으려면 어떻게해야합니까?
[DEPRECATED] By requiring 'parseexcel', 'parseexcel/parseexcel' and/or
'parseexcel/parser' you are loading a Compatibility layer which
provides a drop-in replacement for the ParseExcel library. This
code makes the reading of Spreadsheet documents less efficient and
will be removed in Spreadsheet version 1.0.0
#<Spreadsheet::Excel::Row:0xffffffdbc3e0d2 @worksheet=#<Spreadsheet::Excel::Worksheet:0xb79b8fe0> @outline_level=0 @idx=0 @hidden=false @height= @default_format= @formats= []>
#<Spreadsheet::Format:0xb79bc8ac>
nil
나는 파일의 실제 콘텐츠를해야합니다
이
그것은 다음 나에게주고 내 스크립트book = Spreadsheet.open 'myexcel.xls';
sheet1 = book.worksheet 0
sheet1.each do |row|
puts row.inspect ;
puts row.format 2;
puts row[1];
exit;
end
입니다. 내가 도대체 뭘 잘못하고있는 겁니까?
새 코드를 작성한 것 같아서 경고 다음과 같이 'ParseExcel' 라이브러리를 사용하는 것이 좋습니다. 내가 그 중 하나를 사용하지는 않았지만, deprecated 기능에 새로운 것을 구축하는 것은 나에게 나쁜 생각으로 보입니다. –
왜 콘텐츠를 표시하고 있지 않습니다. – Pavunkumar