Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Howto read Excel file in Scala [closed]

Tags:

excel

scala

Is there a way to read an Excel file in Scala (xls not csv)? I mean are there any Scala libraries to do so?

like image 856
albert green Avatar asked Dec 12 '10 12:12

albert green


People also ask

How do I read XLS files in Databricks?

(1) login in your databricks account, click clusters, then double click the cluster you want to work with. to intall libs. (4) After the lib installation is over, open a notebook to read excel file as follow code shows, it can work!

How do I read an Excel file in Pyspark?

Read an Excel file into a pandas-on-Spark DataFrame or Series. Support both xls and xlsx file extensions from a local filesystem or URL. Support an option to read a single sheet or a list of sheets. The string could be a URL.


1 Answers

Try Apache POI, it's a Java library for reading most of Microsoft's document formats.

like image 166
Theo Avatar answered Oct 05 '22 23:10

Theo