結果をテキストではなく文字列配列で送信したい。結果をテキストで送信するためのコードは次のとおりですが、結果を文字列配列で送信したいのです。
ChannelSftp sftpChannel = (ChannelSftp) channel;
try {
Vector ls=sftpChannel.ls("/home/abc/Desktop");
for(int i = 0; i < ls.size(); i++) {
text += sftpChannel.pwd() + "/" + (((LsEntry)ls.get(i)).getFilename()) + "\n";
}
t.post(new Runnable() {
public void run() { t.setText(text); }
});
} catch (SftpException e1) { }