サーバー上のファイルの場所を学習するためのコードが必要です。ファイルの名前は学習できますが、場所は学習できません。たとえば、(\home\user1\desktop\abc.txt) のように abc.txt を学習したい
try {
JSch jsch = new JSch();
Session session = null;
session = jsch.getSession("***", "***.***.***.***",22);
session.setConfig("StrictHostKeyChecking", "no");
session.setPassword("****");
session.connect();
Channel channel = session.openChannel("sftp");
channel.connect();
ChannelSftp sftpChannel = (ChannelSftp) channel;
sftpChannel.exit();
session.disconnect(); }catch(JSchException e){writeToSDFile(" "+e.toString());}