public void readFile() {
//创建远程连接,默认连接端口为22,如果不使用默认,可以使用方法
//new Connection(ip, port)创建对象
String ip = "";
String usr = "";
String pwd = "";
//int port=22;
Connection conn = null;
String date = "";
String path="";
try {
//连接远程服务器
// 连接部署服务器
conn = new Connection(ip);
conn.connect();
//使用用户名和密码登录
boolean b = conn.authenticateWithPassword(usr, pwd);
if (!b) {
throw new IOException("Authentication failed.");
} else {
SFTPv3Client sft = new SFTPv3Client(conn);
Vector> v = sft.ls("path");
for (int i = 0; i < v.size(); i++) {
SFTPv3DirectoryEntry s = new SFTPv3DirectoryEntry(
本文链接:https://my.lmcjl.com/post/14571.html
展开阅读全文
4 评论