gpt4 book ai didi

java - Camel : How to skip multiple header lines in CSV files

转载 作者:行者123 更新时间:2023-12-02 13:22:07 30 4
gpt4 key购买 nike

我将使用 Apache Camel 处理 CSV 文件。我的文件有多个标题行。在Camel中,我只找到 skipFirstLineskipHeaderRecord (这对我来说不清楚),但如何跳过多行?

最佳答案

在处理正文之前,您可以在正文上使用 tokenize 方法。

tokenize(String token, int group, boolean skipFirst)

示例:

`from("filePath").
split(body().tokenize("\n",1,true)).
streaming().
process(exchange -> {....}).
to("filePath");`

关于java - Camel : How to skip multiple header lines in CSV files,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43520162/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com