如何使用Camel获取目录中文件数的计数?
由于
答案 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?");
}
});