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

2022年10月20日

摘要: 本文主要介绍.NET Core 3.0中,使用JsonSerializer(System.Text.Json)对JSON数据进行序列化和反序列化的方法及示例代码。 1、使用的命名空间 using System.Text.Json;using System.Text.Json.Serializatio 阅读全文

posted @ 2022-10-20 13:42 火冰·瓶 阅读(1871) 评论(0) 推荐(0) 编辑

摘要: 本文主要介绍ASP .NET Core使用SmtpClient邮件的方法,从.NET Core 2.0开始,Microsoft引入了SmtpClient,与.NET Framework 4中的实现相同。并且不必依赖第三方Nuget包直接可以使用。 1、SmtpClient配置文件 由于配置已经注入S 阅读全文

posted @ 2022-10-20 13:36 火冰·瓶 阅读(217) 评论(0) 推荐(0) 编辑

摘要: 本文主要介绍.NET(C#)中调用cmd.exe(dos命令)两种方法,一个是通过Process调用,另一个是通过Cli调用。 1、通过Process调用cmd命令 1)C#运行shell命令 string strCmdText; strCmdText= "/C copy /b Image1.jpg 阅读全文

posted @ 2022-10-20 13:35 火冰·瓶 阅读(3843) 评论(0) 推荐(1) 编辑

摘要: 本文主要介绍.NET(C#)中,使用Linq时实现对多列数据进行分组的方法及示例代码。 1、C# 3或更高版本使用匿名类型 // 声明式查询语法 var result3 = from x in table group x by new { x.Column1, x.Column2 } into g 阅读全文

posted @ 2022-10-20 13:33 火冰·瓶 阅读(1459) 评论(0) 推荐(2) 编辑

摘要: 本文主要介绍通过DotnetSpider写少量代码快速的实现网页的抓取。 1、 通过Nuget安装引用DotnetSpider 项目上右键 -》选择"管理Nuget程序包" -》搜索"DotnetsSpider" -》点击"DotnetsSpider.Core"安装,还要安装"DotnetSpide 阅读全文

posted @ 2022-10-20 13:29 火冰·瓶 阅读(914) 评论(1) 推荐(0) 编辑

摘要: 本文主要介绍.NET Core2.1,在EF(Entity Framework) Core中配置使用Sqlite数据库,自动创建Sqlite数据库,自动创建表。 1、安装用到的Nuget包 项目上右键 -》选择"管理Nuget程序包" -》搜索"Microsoft.EntityFrameworkCo 阅读全文

posted @ 2022-10-20 13:27 火冰·瓶 阅读(471) 评论(0) 推荐(0) 编辑

摘要: 本文主要介绍.NET Core中,通过appsettings.json配置文件获取数据库连接字符串。 1、在项目的根目录中创建appsettings.json文件 { "MssqlConnectionString": "Server=yourip; Database=yourdbname; User 阅读全文

posted @ 2022-10-20 13:26 火冰·瓶 阅读(123) 评论(0) 推荐(0) 编辑

2022年10月1日

摘要: ZLMediaKit地址:https://github.com/ZLMediaKit/ZLMediaKit WVP地址:https://github.com/648540858/wvp-GB28181-pro ZLMediaKit开启SSL 1.查看ZLMediaKit配置文件中的SSL端口 #ht 阅读全文

posted @ 2022-10-01 00:26 火冰·瓶 阅读(869) 评论(0) 推荐(0) 编辑

2022年9月30日

摘要: 其他参考牛文: https://blog.csdn.net/LS_ss123/article/details/105222953 https://blog.csdn.net/weixin_43360707/article/details/120975297 https://zhuanlan.zhih 阅读全文

posted @ 2022-09-30 11:05 火冰·瓶 阅读(1507) 评论(0) 推荐(0) 编辑

2022年9月28日

摘要: <input type="file" id="avatar" name="avatar"> <button type="button">保存</button> ('button').click(function(){ var files = $('#avatar').prop('files'); / 阅读全文

posted @ 2022-09-28 16:52 火冰·瓶 阅读(13) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 17 下一页