C# 连接SFTP

C# 连接SFTPC#连接SFTP网上学习到C#连接SFTP方式,整理了一下,文章结尾处为具体的调用方式以及密钥文件的转换。SFTPHelper.c文件:usingSystem;usingSystem.Collections;usingSystem.Collections.Generic;usingSystem.Collections.Specialized;usingSystem.Configuration;usingSystem.Linq;usingSystem.Text;using

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

C# Tamir.SharpSsh连接SFTP

网上学习到C#连接SFTP方式,整理了一下,文章结尾处为具体的调用方式以及密钥文件的转换。

SFTPHelper.cs文件:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Configuration;
using System.Linq;
using System.Text;
using Tamir.SharpSsh.jsch;
namespace Pfizer.EDIDataCollection.Framework
{ 

public class SFTPHelper
{ 

private Session m_session;
private Channel m_channel;
private ChannelSftp m_sftp;
//host:sftp地址 user:用户名 pwd:密码 
public SFTPHelper(string host, string user, string pwd)
{ 

string[] arr = host.Split(':');
string ip = arr[0];
int port = 22;
if (arr.Length > 1) port = Int32.Parse(arr[1]);
JSch jsch = new JSch();
const string passphrase = "";
const string privateKey = "";
if (!"".Equals(privateKey))
{ 

if (!"".Equals(passphrase))
{ 

//设置带口令的密钥
jsch.addIdentity(privateKey, passphrase);
}
else
{ 

//设置不带口令的密钥
jsch.addIdentity(privateKey);
}
}
//设置密钥和密码
m_session = jsch.getSession(user, ip, port);
MyUserInfo ui = new MyUserInfo();
ui.setPassword(pwd);
m_session.setUserInfo(ui);
}
/// <summary>
/// 新增构造函数(1个参数)
/// </summary>
/// <param name="sftpSectionName">sftp服务器配置节点名称</param>
public SFTPHelper(string sftpSectionName)
{ 

var config = System.Configuration.ConfigurationManager.GetSection(sftpSectionName) as NameValueCollection;
string host = config["host_name"];
string user = config["user_name"];
string password = config["password"];
string passphrase = config["passphrase"];
string privateKey = AppDomain.CurrentDomain.BaseDirectory + config["privateKey"];
string[] arr = host.Split(':');
string ip = arr[0];
int port = 22;
if (arr.Length > 1) port = Int32.Parse(arr[1]);
JSch jsch = new JSch();
//const string passphrase = passphrase;
//const string privateKey = privateKeyPath;
if (!"".Equals(privateKey))
{ 

if (!"".Equals(passphrase))
{ 

//设置带口令的密钥
jsch.addIdentity(privateKey, passphrase);
}
else
{ 

//设置不带口令的密钥
jsch.addIdentity(privateKey);
}
}
//设置密钥和密码
m_session = jsch.getSession(user, ip, port);
MyUserInfo ui = new MyUserInfo();
ui.setPassword(password);
m_session.setUserInfo(ui);
}
public SFTPHelper()
{ 

var config = ConfigurationManager.GetSection("sftpServer") as NameValueCollection;
string host = config["host_name"];
string user = config["user_name"];
string pwd = config["password"];
string passphrase = config["passphrase"];
string privateKey = AppDomain.CurrentDomain.BaseDirectory + config["privateKey"];
string[] arr = host.Split(':');
string ip = arr[0];
int port = Convert.ToInt32(config["port"] ?? "22");//默认端口为22 
if (arr.Length > 1) port = Int32.Parse(arr[1]);
JSch jsch = new JSch();
if (!"".Equals(privateKey))
{ 

if (!"".Equals(passphrase))
{ 

//设置带口令的密钥
jsch.addIdentity(privateKey, passphrase);
}
else
{ 

//设置不带口令的密钥
jsch.addIdentity(privateKey);
}
}
//设置密钥和密码
m_session = jsch.getSession(user, ip, port);
MyUserInfo ui = new MyUserInfo();
ui.setPassword(pwd);
m_session.setUserInfo(ui);
}
//SFTP连接状态 
public bool Connected { 
 get { 
 return m_session.isConnected(); } }
//连接SFTP 
public bool Connect()
{ 

try
{ 

if (!Connected)
{ 

m_session.connect();
m_channel = m_session.openChannel("sftp");
m_channel.connect();
m_sftp = (ChannelSftp)m_channel;
}
return true;
}
catch(Exception ex)
{ 

LogHelper.Error("ERROR", ex);
return false;
}
}
//断开SFTP 
public void Disconnect()
{ 

if (Connected)
{ 

m_channel.disconnect();
m_session.disconnect();
}
}
SFTP存放文件 
//public bool Put(string localPath, string remotePath)
//{ 

// try
// { 

// Tamir.SharpSsh.java.String src = new Tamir.SharpSsh.java.String(localPath);
// Tamir.SharpSsh.java.String dst = new Tamir.SharpSsh.java.String(remotePath);
// m_sftp.put(src, dst);
// return true;
// }
// catch
// { 

// return false;
// }
//}
//public bool Put(string localPath)
//{ 

// try
// { 

// var config = ConfigurationManager.GetSection("sftpServer") as NameValueCollection;
// string remotePath = config["upload"];
// Tamir.SharpSsh.java.String src = new Tamir.SharpSsh.java.String(localPath);
// Tamir.SharpSsh.java.String dst = new Tamir.SharpSsh.java.String(remotePath);
// m_sftp.put(src, dst);
// return true;
// }
// catch
// { 

// return false;
// }
//}
/// <summary>
/// 增加配置节
/// </summary>
/// <param name="localPath"></param>
/// <param name="configSection"></param>
/// <returns></returns>
public bool Put(string localPath, string remotePath, string configSection)
{ 

try
{ 

var config = ConfigurationManager.GetSection(configSection) as NameValueCollection;
//string remotePath = config[remotePath];
Tamir.SharpSsh.java.String src = new Tamir.SharpSsh.java.String(localPath);
Tamir.SharpSsh.java.String dst = new Tamir.SharpSsh.java.String(config[remotePath]);
m_sftp.put(src, dst);
return true;
}
catch
{ 

return false;
}
}
//SFTP获取文件 
public bool Get(string remotePath, string localPath)
{ 

try
{ 

Tamir.SharpSsh.java.String src = new Tamir.SharpSsh.java.String(remotePath);
Tamir.SharpSsh.java.String dst = new Tamir.SharpSsh.java.String(localPath);
m_sftp.get(src, dst);
return true;
}
catch
{ 

return false;
}
}
public bool Get(string remotePath, string localPath, string filetype)
{ 

try
{ 

var config = ConfigurationManager.GetSection("sftpServer") as NameValueCollection;
remotePath = config["download"];
Tamir.SharpSsh.java.String src = new Tamir.SharpSsh.java.String(remotePath + filetype);
Tamir.SharpSsh.java.String dst = new Tamir.SharpSsh.java.String(localPath);
m_sftp.get(src, dst);
return true;
}
catch
{ 

return false;
}
}
//删除SFTP文件 
public bool Delete(string remoteFile)
{ 

try
{ 

m_sftp.rm(remoteFile);
return true;
}
catch
{ 

return false;
}
}
public bool Delete(string fileType, string filepath)
{ 

try
{ 

var config = ConfigurationManager.GetSection("sftpServer") as NameValueCollection;
string remotePath = config[filepath];
m_sftp.rm(remotePath + fileType);
return true;
}
catch
{ 

return false;
}
}
public bool Delete(string fileType, string filepath, string configSection)
{ 

try
{ 

var config = ConfigurationManager.GetSection(configSection) as NameValueCollection;
string remotePath = config[filepath];
m_sftp.rm(remotePath + fileType);
return true;
}
catch
{ 

return false;
}
}
//获取SFTP文件列表 
public ArrayList GetFileList(string filepath, string fileType)
{ 

try
{ 

var config = ConfigurationManager.GetSection("sftpServer") as NameValueCollection;
string remotePath = config[filepath];
Tamir.SharpSsh.java.util.Vector vvv = m_sftp.ls(remotePath);
ArrayList objList = new ArrayList();
foreach (Tamir.SharpSsh.jsch.ChannelSftp.LsEntry qqq in vvv)
{ 

string sss = qqq.getFilename();
if (sss.Length > (fileType.Length + 1) && sss.Contains(fileType))
{ 
 objList.Add(sss); }
else { 
 continue; }
}
return objList;
}
catch
{ 

return null;
}
}
//登录验证信息 
public class MyUserInfo : UserInfo
{ 

String passwd;
public String getPassword() { 
 return passwd; }
public void setPassword(String passwd) { 
 this.passwd = passwd; }
public String getPassphrase() { 
 return null; }
public bool promptPassphrase(String message) { 
 return true; }
public bool promptPassword(String message) { 
 return true; }
public bool promptYesNo(String message) { 
 return true; }
public void showMessage(String message) { 
 }
}
}
}

具体调用方法:

SFTPHelper sftp = new SFTPHelper("("sftpServerVirtualMeeting"); "); // ("sftpServerVirtualMeeting"); 为config中配置的信息
//首先连接
sftp.Connect()
//连通后可调用其他方法例如
//上传文件 zipPath为上传文件路径 sftpServerVirtualMeeting为
sftp.Put(zipPath, "upload", "sftpServerVirtualMeeting");
//config中配置的上传到sftp地址
//最后关闭连接
sftp.Disconnect();
config 中配置:
<sftpServerVirtualMeeting>
<add key="host_name" value="xxxxx.xxx.com" />
<add key="user_name" value="账号" />
<add key="password" value="密码" />
<add key="passphrase" value="密码" />
<add key="privateKey" value="密钥文件名称" />
<add key="upload" value="上传到sftp地址" />
<add key="download" value="上传到sftp地址" />
<add key="port" value="22" />//端口号
</sftpServerVirtualMeeting>

密钥文件转换:

需要借用工具PuTTYgen 软件 将ppk文件转换成pem文件后可放入代码中使用(我接触的项目只涉及
到单一sftp密钥上传,如若涉及多个sftp密钥,还请自行百度动态转换ppk格式)

ppk转pem:
https://blog.csdn.net/albertfly/article/details/76401176

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/179141.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • bat命令详解_bat结束进程命令

    bat命令详解_bat结束进程命令批处理文件中可引用的参数为%0~%9,%0是指批处理文件的本身,也可以说是一个外部命令;%1~%9是批处理参数,也称形参;而替换形参的实参若超过了批处理文件中所规定数值(9个)且想在批处理文件中应用这些实参的话,shift命令可以帮你实现! Shift命令:更改批处理文件中可替换参数的位置 C代码    shift[/n]   n的取值是[0,8],且为整数;[/n]为可选参数,当赋予n

  • java二维数组输入_java 二维数组的输入输出问题[通俗易懂]

    java二维数组输入_java 二维数组的输入输出问题[通俗易懂]java二维数组的输入输出问题有一个二维数组里面包含了很大的数字。我要把它通过输出流存储在.dat文件中然后在另一个程序中把这些信息读取出来,并且存储在另外一个二维数组中。请问该怎么办?这个数组如下:intmapl[][]={{0,0,0,0,148,149,149,149,149,149,149,149,149,149,178,0,0,0,0,0,…

  • 数据库和数据仓库的区别与联系_大数据的四个特点

    数据库和数据仓库的区别与联系_大数据的四个特点1.概念方面.数据库:是一种逻辑概念,用来存放数据的仓库。通过数据库软件来实现。数据库由很多表组成,表是二维的,一张表里可以有很多字段。字段一字排开,对应的数据就一行一行写入表中。数据库的表,在于能够

  • 自定义控件_绘制太极(拖动)

    自定义控件_绘制太极(拖动)packagecom.example.administrator.houzengyu_0417;importandroid.content.Context;importandroid.graphics.Canvas;importandroid.graphics.Color;importandroid.graphics.Paint;importandroid.graphics

  • 卸载软件包命令_查看rpm包是否安装

    卸载软件包命令_查看rpm包是否安装可以先用rpm-q’xxx’或者rpm-qf’xxx/bin/xxxx.xx’来查询一下所属的rpm包的名字。然后用rpm-e’xxxxxx’来删之。’xxx/bin/xxxx.xx’是一个包中任意的文件’xxxxxx’是查询得到的rpm包的名称    rpm-e的时候后面的文件名不用加版本号 安全地卸载RPM卸载软件包,并不是简单地将原来安

  • Python分析和实现基于用户和Item的协同过滤算法

    Python分析和实现基于用户和Item的协同过滤算法打开微信扫一扫,关注《搜索与推荐Wiki》1:协同过滤算法简介2:协同过滤算法的核心3:协同过滤算法的应用方式4:基于用户的协同过滤算法实现5:基于物品的协同过滤算法实现一:协同过滤算法简介关于协同过滤的…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号