博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 ··· 17 下一页

2024年7月4日

摘要: 引用第三方库:Ssh .Net try { using (var client = new SftpClient(ftpHost, ftpPort, ftpUsername, ftpPassword)) { client.Connect(); IEnumerable<ISftpFile> fileE 阅读全文

posted @ 2024-07-04 11:00 火冰·瓶 阅读(8) 评论(0) 推荐(0) 编辑

2024年7月2日

摘要: private void ReadCVS(YaJiangBigDataContext _content,Type classType, string csvPath) { //YaJiangBigDataContext 是EF的Contex,本例中可以替换为List<Object> //csvPat 阅读全文

posted @ 2024-07-02 21:34 火冰·瓶 阅读(30) 评论(0) 推荐(0) 编辑

摘要: Type classType = typeof(ClassName); // 获取类的type string path = fullName + "," + assemblyName;//命名空间.类型名,程序集 Type classType = Type.GetType(path);//加载类型 阅读全文

posted @ 2024-07-02 21:26 火冰·瓶 阅读(128) 评论(0) 推荐(0) 编辑

摘要: static void Test() { string path = "E:\\软件包\\net安装包\\4_NDP472-KB4054531-Web.exe"; Console.WriteLine("目录:" + Path.GetDirectoryName(path)); //E:\软件包\net 阅读全文

posted @ 2024-07-02 21:01 火冰·瓶 阅读(17) 评论(0) 推荐(0) 编辑

2024年7月1日

摘要: 参考文档: https://learn.microsoft.com/zh-cn/dotnet/api/system.io.compression.zipfile?view=net-8.0&redirectedfrom=MSDN https://blog.csdn.net/lvmingzhou/art 阅读全文

posted @ 2024-07-01 11:06 火冰·瓶 阅读(124) 评论(0) 推荐(0) 编辑

2024年6月25日

摘要: nc是netcat工具的命令,是一个很好用的网络工具。比如,可以用来端口扫描,文件传输等网络功能。实际命令是ncat。 参数说明: -g<网关> 设置路由器跃程通信网关,最多可设置8个。 -G<指向器数目> 设置来源路由指向器,其数值为4的倍数。 -h 在线帮助。 -i<延迟秒数> 设置时间间隔,以 阅读全文

posted @ 2024-06-25 18:55 火冰·瓶 阅读(431) 评论(0) 推荐(0) 编辑

2024年6月23日

摘要: 下载MySQL-For-Visual Studio 下载地址 下载Connector/.NET 下载地址 安装完成后重启Visual Studio 阅读全文

posted @ 2024-06-23 23:56 火冰·瓶 阅读(4) 评论(0) 推荐(0) 编辑

2023年10月25日

摘要: 1.【整数+小数】(包含正数、零、负数) /^-?(0|([1-9][0-9]*))(\.[\d]+)?$/ 2.非负【整数+小数】(包含正数、零) /^(0|([1-9][0-9]*))(\.[\d]+)?$/ 3.【整数+小数】(小数严格保留两位小数)(包含正数、零、负数) /^-?(0|([1 阅读全文

posted @ 2023-10-25 19:11 火冰·瓶 阅读(5) 评论(0) 推荐(0) 编辑

2023年6月7日

摘要: 详见:https://blog.csdn.net/liyou123456789/article/details/125392815 阅读全文

posted @ 2023-06-07 22:47 火冰·瓶 阅读(38) 评论(0) 推荐(0) 编辑

2023年5月25日

摘要: 1.在NuGet中添加包:UEditor.Core 或通过程序包管理控制台:Install-Package UEditor.Core 2.添加服务端统一请求接口 public class UEditorController : Controller { private readonly UEdito 阅读全文

posted @ 2023-05-25 17:29 火冰·瓶 阅读(245) 评论(0) 推荐(1) 编辑

上一页 1 2 3 4 5 6 ··· 17 下一页