使用 Apache Camel 读取 excel 文件

Read an excel file using Apache Camel

我正在尝试使用 Apache Camel 读取 Excel 文件。为此,我发现我们可以使用 CSV 组件:

https://camel.apache.org/components/3.14.x/dataformats/csv-dataformat.html

为此,我创建了一个从文件夹中读取 XLSX 文件的简单路径。然后我试图打印那个 Excel 文件的内容并写入另一个文件夹,但是文件的内容没有被打印出来。路线如下:

import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.dataformat.csv.CsvDataFormat;
import org.apache.commons.csv.CSVFormat;
import org.springframework.stereotype.Component;

@Component
public class MyRoute extends RouteBuilder {
    
    public void configure() {
        
        CsvDataFormat csv = new CsvDataFormat();
        csv.setFormat(CSVFormat.EXCEL);
        
        from("file://C://work//ei01//source")
            .unmarshal(csv)
            .log("Reached ${body}")
            .marshal(csv)
            .to("file://C://work//ei01//destination?fileName=test.xlsx");
    }
}

pom.xml如下:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.3</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>com.example</groupId>
    <artifactId>sprng-boot-camel-demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>sprng-boot-camel-demo</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.camel.springboot</groupId>
            <artifactId>camel-spring-boot-starter</artifactId>
            <version>3.14.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.camel.springboot</groupId>
            <artifactId>camel-csv-starter</artifactId>
            <version>3.14.1</version>
        </dependency>
        

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

你能告诉我我做错了什么吗?

我假设您尝试读取真实的 Excel 文件 (.xlsx)。这不适用于 CSV data format.

CSVFormat.EXCEL格式是读取从Excel导出的CSV文件(.csv)。由于 CSV 格式在不同产品中的做法大不相同,因此 Camel 支持多种“well-known”CSV 格式。其中之一是 CSVFormat.EXCEL.

要阅读本机 Excel 格式(我认为它是一个包含 XML 文件的 ZIP 文件),您需要一个像 Apache POI.

这样的库