随笔分类 -  C#小知识

摘要:MVC用户权限验证 新增UserAuthorizeAttribute类 using Dw.Util; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.W 阅读全文
posted @ 2021-03-24 09:32 代码沉思者 阅读(79) 评论(0) 推荐(0) 编辑
摘要:日志功能本来是一件非常好的事情,能帮助我们分析和解决很多问题。但是,如果让日志影响到性能,这就需要权衡一下了。没关系,本篇博客咱们不仅来解决这个问题,咱们更要眼见为实,带图带真相让你用的明明白白。 日志实现异步功能 其实呢就一句话。。 配置文件targets中配置async="true"即为异步。默 阅读全文
posted @ 2021-03-15 16:55 代码沉思者 阅读(1207) 评论(0) 推荐(0) 编辑
摘要:客户端语言 版本 类库 是否支持 兼容方案 Java 1.6.115之前 否 第三方支持包 1.6.115之后 是 启动jvm 添加参数-Dhttps.protocols=TLSv1.1,TLSv1.2 1.7 是 启动jvm 添加参数-Dhttps.protocols=TLSv1.1,TLSv1. 阅读全文
posted @ 2021-01-11 14:09 代码沉思者 阅读(3153) 评论(0) 推荐(0) 编辑
摘要:直接上代码: using System; using System.Collections.Generic; using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threadin 阅读全文
posted @ 2020-09-03 18:32 代码沉思者 阅读(948) 评论(0) 推荐(0) 编辑
摘要:问题: 【SSL】WebClient 请求 https 页面出错:未能创建 SSL/TLS 安全通道 代码: /** post 表单的方式发送请求数据 **/ public String sendMessage(String postUrl, NameValueCollection postData 阅读全文
posted @ 2020-07-23 16:17 代码沉思者 阅读(2959) 评论(0) 推荐(0) 编辑
摘要:第一步:appsettings.json配置GoEasy所需参数 "GoEasy": { "URL": "https://rest-hangzhou.goeasy.io/publish", "Appkey": "BC-**************************" } 第二步:添加GoEas 阅读全文
posted @ 2020-06-11 10:06 代码沉思者 阅读(897) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Security.Cryptography; using System.Text; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTest.OtherTest 阅读全文
posted @ 2020-06-04 14:10 代码沉思者 阅读(6173) 评论(0) 推荐(0) 编辑
摘要:废话不多说,直接上代码: Main程序 string content = "<p><img src=\"/Uploads/Images/UEditor/2020052417350496181.jpg\" title=\"pic.jpg\" alt=\"pic.jpg\"/></p><p><br/>< 阅读全文
posted @ 2020-05-25 14:54 代码沉思者 阅读(1128) 评论(0) 推荐(0) 编辑
摘要:操作方法: 备注:UEditor插入视频,Object Iframe等标签被过滤问题处理 ueditor.all.js添加 case 'embed': str = '<iframe frameborder="0" width="' + width + '" height="' + height + 阅读全文
posted @ 2020-04-15 16:36 代码沉思者 阅读(498) 评论(0) 推荐(0) 编辑
摘要:在工作过程中,调用第三方接口出现当返回的数据是中文的时候,中文数据便会变成 这样??? 迷~ ,一开始我以为是发送成功后接收字符编码是不是不对,在换过UTF-8,Unicode,。。。都是不行。 解决方案: 就是解码用Unicode content-Type 是 application/json;c 阅读全文
posted @ 2020-04-08 10:17 代码沉思者 阅读(3928) 评论(0) 推荐(0) 编辑
摘要:无法从命令行或调试器启动服务,必须首先安装Windows服务(使用installutil.exe),然后用ServerExplorer、Windows服务器管理工具或NET START命令启动它 1.以管理员身份运行cmd 2.安装windows服务 cd C:\Windows\Microsoft. 阅读全文
posted @ 2020-04-01 18:07 代码沉思者 阅读(3547) 评论(0) 推荐(0) 编辑
摘要:String.Format 方法的几种定义: String.Format (String, Object) 将指定的 String 中的格式项替换为指定的 Object 实例的值的文本等效项。String.Format (String, Object[]) 将指定 String 中的格式项替换为指定 阅读全文
posted @ 2020-03-19 09:35 代码沉思者 阅读(2036) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web; namespace Dw.Util { /// <summary> /// Session 操作类 /// 1、GetSession 阅读全文
posted @ 2019-11-15 13:48 代码沉思者 阅读(1230) 评论(1) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Net; using System.Windows.Forms; using System.Globalization; namespace FtpLib { public class FtpWeb { s 阅读全文
posted @ 2019-11-06 17:20 代码沉思者 阅读(2069) 评论(0) 推荐(0) 编辑
摘要:string jsonStr = JsonConvert.SerializeObject(data); FileStream stream = new FileStream(@"C:\Users\YeChangZhong\Desktop\新建文件夹\aa.txt", FileMode.Create);//fileMode指定是读取还是写入 ... 阅读全文
posted @ 2019-11-06 14:00 代码沉思者 阅读(334) 评论(0) 推荐(0) 编辑
摘要:C# 集合的交集 差集 并集 去重 两个对象list,直接比较是不行的,因为他们存的地址不一样 需要重写GetHashCode()与Equals(object obj)方法告诉电脑 阅读全文
posted @ 2019-08-27 11:21 代码沉思者 阅读(7061) 评论(0) 推荐(1) 编辑
摘要:用途说明: 公司要求做一个数据导入程序,要求将Excel数据,大批量的导入到数据库中,尽量少的访问数据库,高性能的对数据库进行存储。于是在网上进行查找,发现了一个比较好的解决方案,就是采用SqlBulkCopy来处理存储数据。SqlBulkCopy存储大批量的数据非常的高效,就像这个方法的名字一样, 阅读全文
posted @ 2019-06-24 15:01 代码沉思者 阅读(3191) 评论(0) 推荐(0) 编辑
摘要:功能需求:需要查询一个站点(已知该站点经纬度)5公里范围内的其它站点。 方 法 一 :对每条记录,去进行遍历,跟数据库中的每一个点进行距离计算,当距离小于5公里时,认为匹配(效率极其低下,耗时长)。 方 法 二 :先过滤出大概的经纬度范围再进行计算。我们求取的虽然是个圆,但我们可以先求出该圆的外接正 阅读全文
posted @ 2019-06-12 11:16 代码沉思者 阅读(2684) 评论(2) 推荐(3) 编辑
摘要:第一步添加DLL引用 Install-Package Newtonsoft.Json Install-Package Qiniu 若通过路径读取文件: byte[] data = System.IO.File.ReadAllBytes(s); 其中s为文件的路径 阅读全文
posted @ 2019-06-06 14:44 代码沉思者 阅读(847) 评论(1) 推荐(0) 编辑