如何在 Scala 中读取 Excel 文件
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/4421643/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-22 02:38:31 来源:igfitidea点击:
Howto read Excel file in Scala
提问by albert green
Is there a way to read an Excel file in Scala (xls not csv)? I mean are there any Scala libraries to do so?
有没有办法在 Scala 中读取 Excel 文件(xls 不是 csv)?我的意思是有任何 Scala 库可以这样做吗?
回答by Theo
Try Apache POI, it's a Java library for reading most of Microsoft's document formats.
试试Apache POI,它是一个用于读取大多数 Microsoft 文档格式的 Java 库。

