I want to read ms excel file from Ftp server(not in my network) using Apache POI API.
I have small concern with performance,read a file from FTP is better approach or first download on local system then perform reading operation.
please help me to choose better approach to read file.
Thanks
I think the first one is better. The latter needs 2 more io-op than the former, and io-op is time-consumed.