0

如何使用 Camel 获取目录中文件数的计数?

谢谢

4

1 回答 1

2

我发现了如何使用 Camel 执行此操作 - 以下是一个示例:

// add our route to the CamelContext
    context.addRoutes(new RouteBuilder() {
        public void configure() {

            from("file:"+getFullPath()+"?noop=true")
            .process(new Processor() {

                public void process(Exchange exchange) throws Exception {

                    System.out.println("size is #" +exchange.getProperty("CamelBatchSize"));
                    System.out.println(file.getName());

                }
            }).to("file:/home/anton/tmp/outbox?"); 

        }
    });
于 2013-09-24T18:22:24.670 回答