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

时间:2013-09-21 14:24:14

标签: apache-camel

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

由于

1 个答案:

答案 0 :(得分:1)

我发现了如何使用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?"); 

        }
    });