我想以字符串数组而不是文本形式发送结果。这是以文本形式发送结果的代码。但我想以字符串数组形式发送结果。
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) { }