0

我想监视 zip 文件的目录,然后使用 Camel 和 Spring DSL 单独处理 zip 文件中的文件。可能会出现以下情况吗?

<camel:route>
  <camel:from uri="file:/src/Path/"/>
  <camel:split streaming="true">
    <zipSplit/>
    <camel:to uri="bean:fileProcessor?method=processStream"/>
  </camel:split>
</camel:route>

好的,所以我发现以下内容适用于包含一个文件的 zip 文件,但问题是如何处理包含多个文件的 zip 文件?

<bean id="zipFileDataFormat" class="org.apache.camel.dataformat.zipfile.ZipFileDataFormat"/>

<camel:camelContext>
    <camel:contextScan/>
    <camel:route>
        <camel:from uri="file:///C:/testSrc/?delay=6000&noop=true&idempotent=false"/>
        <camel:unmarshal ref="zipFileDataFormat"/>
        <camel:to uri="file:///C:/testDst"/>
    </camel:route>
</camel:camelContext>

请注意,文件不会被发送到 bean 进行处理,只是解压缩到另一个目录中。

4

1 回答 1

5

这行得通。请注意,日志元素将为您提供详细信息。

<bean id="zipFileDataFormat" class="org.apache.camel.dataformat.zipfile.ZipFileDataFormat">
    <property name="usingIterator" value="true"/>
</bean>

<camel:camelContext>
    <camel:contextScan/>
    <camel:route id="unzipMultipleFiles">
        <camel:from uri="file:///C:/testSrc/?delay=30000&amp;noop=true&amp;idempotent=false"/>
        <camel:unmarshal ref="zipFileDataFormat"/>
        <camel:split streaming="true">
            <camel:simple>${body}</camel:simple>
            <camel:to uri="log:org.apache.camel?level=INFO&amp;showAll=true&amp;multiline=true"/>
            <camel:to uri="file:///C:/testDst"/>
        </camel:split>
    </camel:route>
</camel:camelContext>
于 2013-08-26T01:38:37.357 回答