The “jsch” based implementation works for me.
But it looks not modern one due to using Vector (old style Java collection).
I found that the other implementations are less popular and not documented.
Can you recommend implementation of SFTP library that he/she has good experience with it.
Thanks.
The jsch based implementation works for me. But it looks not modern one due
Share
As @dty said, as long as your application can work smoothly why do you care for the usage of deprecated classes/methods in the library ?
You only need to care about what you’re calling, not how does it work in the inside.
You can also use abstraction tools above JSch, but it won’t change a thing.
You can also check for JSch alternatives, but as JSch is widely used you’ll have probably less bugs with it.