Spring Integration は初めてです。以下のコードがあります。システムのフォルダーの 1 つにテキスト ファイルを配置し、次のように受信チャネル アダプターを構成しました。
<int-file:inbound-channel-adapter channel="filesInChannel"
directory="file:${java.io.tmpdir}/input" auto-create-directory="true" >
<int:poller id="poller" fixed-delay="1000" />
</int-file:inbound-channel-adapter>
<int:channel id="filesInChannel"> </int:channel>
チャンネルからの質問です ( filesInChannel
) どうすれば絶対パスを含むファイル名を知ることができますか?
例: 私のファイルは次の場所にありますC:\someFolder\some.txt
チャネルから私はパスの上に取得する必要があります。