无法使用apache camel FTP删除位于服务器上的远程文件

时间:2014-01-29 13:39:03

标签: java ftp apache-camel sftp

我正在编写一段代码,我需要处理使用Apache camel的服务器上的文件。我需要完成以下步骤:

1 - >控件应遍历位于特定文件夹中的所有文件。

2 - >然后它应该检查哪个文件超过15天。

3 - >然后删除超过15天的文件。

现在,我能够实施第一步和第二步。但我无法删除该文件。 我创建了一个像这样的骆驼路线:

<camel:route id="lastModifiedFMFileCheckRoute">
            <camel:from uri="sftp://someUser@someServer/usableFiles?password=secret"/>
            <camel:setProperty propertyName="availableFile">
                <camel:simple>${body}</camel:simple>
            </camel:setProperty>
            <camel:process ref="fileModificationDateProcessor" />
</camel:route>  

我的处理器的处理方法如下所示,我正在检查文件是否超过15天。

  @Override
        public void process(Exchange exchange) throws Exception {
            boolean isFileDeleted = false;
            @SuppressWarnings("rawtypes")
            GenericFile currentFile = (GenericFile)exchange.getProperty("availableFile", RemoteFile.class); 
            Date currentDate = new Date();
            int numberOfDays = (int)( (currentDate.getTime() - availableFile.getLastModified()) / MILLISECONDS_TO_DAY_CONVERTER_VALUE);
            if(numberOfDays > 15){
                String absoluteFilePath = availableFile.getAbsoluteFilePath();
                //TODO  The file (currentFile) needs to be deleted. As it is older than 15 days.

        }
        exchange.getOut().setBody(fileDeleted);

    }

如何在此处删除所需文件。

1 个答案:

答案 0 :(得分:1)

在您的ftp端点上,您可以设置delete=truefilter=#ageFilter,其中ageFilter是对仅接受超过15天的文件的自定义文件过滤器的引用。

public class AgeFilter<T> implements GenericFileFilter<T> {

    @Override
    public boolean accept(final GenericFile<T> file) {
        long now = System.currentTimeMillis();
        long lastModified = file.getLastModified();

        return now-lastModified > CUT_OFF_AGE;
    }
}

在路线的最后,(s)ftp enpoint将删除此过滤器选择的所有文件。

作为文件过滤器的替代方案,如果文件超过15天,您可以在处理器中抛出RuntimeException。这将使您的路由失败,并将文件保留在远程服务器上。但是,使用控制流的异常实际上并不是一种好的做法。