我如何读取xls和xlsx文件在spark与java



我想在spark中一行一行地读取xls和xlsx (MS Excel)文件,就像我们为文本文件做的那样或如何?

我想使用spark来提高读取大的xml文件的性能,比如1gb,这就是为什么我需要spark来读取文件的部分,就像我们对文本文件所做的那样。

我怎么能读数据从excel文件在spark是否逐行或不?

我只是想用spark读取xls文件中的条目。

请建议。

谢谢! !

我是这样做的。

在maven中添加依赖

<dependencies>
    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-core_2.11</artifactId>
        <version>2.4.2</version>
    </dependency>
    <dependency>
        <groupId>org.apache.spark</groupId>
        <artifactId>spark-sql_2.11</artifactId>
        <version>2.4.2</version>
    </dependency>
    <dependency>
        <groupId>com.crealytics</groupId>
        <artifactId>spark-excel_2.11</artifactId>
        <version>0.11.1</version>
    </dependency>
</dependencies>

我的主类

import org.apache.log4j.Level;
import org.apache.log4j.Logger;
import org.apache.spark.sql.Dataset;
import org.apache.spark.sql.Row;
import org.apache.spark.sql.SparkSession;
public class ReadExcelSheets {
    public static void main(String[] args) {
        //skip logging extras
        Logger.getLogger("org").setLevel(Level.ERROR);
       //build session
        SparkSession spark = SparkSession
                .builder()
                .appName("Java Spark SQL Example")
                .config("spark.master", "local")
                .getOrCreate();
        //read excel - change file name
        Dataset<Row> df = spark.read()
                .format("com.crealytics.spark.excel")
                .option("useHeader", "true")
                //.option("dataAddress", "'Sheet1'!A1:M1470") // optional when you want to read sheets where A1 first top cell and M1470 us very bottom left of sheet.
                .load("datasets/test1.xlsx");
        //show your data
        df.show();
    }
}

spark不能这样做。这不是它的本意。使用其他库,例如Apache POI读取excel,然后将数据作为文本馈送到spark。

虽然这个问题有点老了,但我仍然在回答。也许它会对别人有用。答案是肯定的,您可以使用apache spark 2.x。假设您要将具有3列的xml转换为数据集。

  class Bean {
     private String col1;
     private String col2;   
     private Timestamp col3;
}
StructType structType= new StructType(new StructField[] {
                new StructField("col1", DataTypes.StringType, true, Metadata.empty()),
                new StructField("col2", DataTypes.StringType, true, Metadata.empty()),
                new StructField("col3", DataTypes.TimestampType, true, Metadata.empty())
        });
Dataset<Bean> ds = sparkSession.read().
                schema(structType).
                format("com.crealytics.spark.excel").
                option("useHeader", true). // If the xls file has headers
                option("timestampFormat", "yyyy-MM-dd HH:mm:ss"). // If you want to convert timestamp to a specific format
                option("treatEmptyValuesAsNulls", "false").
                option("inferSchema", "false").
                option("addColorColumns", "false").
                load("/home/user/test/sample.xls"). //path to xls or xlsx
                as(Encoders.bean(Bean.class)); // Bean in which you want to convert the data, you can remove this line if Dataset<Row> is just fine for you

您可以尝试使用HadoopOffice库使用Spark (https://github.com/ZuInnoTe/hadoopoffice/wiki)读写Excel文件。它支持加密Excel,链接工作簿,通过元数据过滤…

相关内容

  • 没有找到相关文章

最新更新