Windows开发-日排行
问题: A binary gap within a positive integer N is any maximal sequence of consecutive zeros that is surrounded by ones at both ends in the binary repres ...
分类:Windows开发 时间:2021-05-08 16:28:26 收藏:0 阅读:23
安装 npm install apidoc -g ####运行 apidoc -i (项目路径) -o (注释存储路径) apidoc.json ####项目根目录中的可选内容包括有关项目的常见信息,例如标题,简短描述,版本和配置选项 { "name": "example", //项目名称 "ver ...
分类:Windows开发 时间:2021-05-09 11:12:23 收藏:0 阅读:35
1、取得RichTextBox文字 TextRange documentTextRange = new TextRange(richTextBox.Document.ContentStart, richTextBox.Document.ContentEnd); string text = DataF ...
分类:Windows开发 时间:2021-05-10 10:53:12 收藏:0 阅读:22
0. 应用场景 将用户上传到的图片, 根据保密程度有三种处理方式,1.放置于服务器上,可直接访问, 2.放置于服务器上,但需要从数据库查询路径,3.将文件写入MongoDB中 1. Nodejs操作思路 因为本人毕业先做的Nodejs后端开发, 一些思路固定了,习惯了之前的编程方法,再转移到现用语言 ...
分类:Windows开发 时间:2021-05-10 15:38:06 收藏:0 阅读:47
为什么要写用例 功能测试用例,大家都写过。但接口测试用例,估计很多人没有写过。在写之前,我们来讨论下,为什么要写接口用例。 *** 理清思路,避免漏测和重复测 提高测试效率 跟进测试进度 告诉领导做过 跟进重复性工作 更好的记录问题,发现问题,复现问题 同时这也是是接口测试流程中的一个产物(测试用例 ...
分类:Windows开发 时间:2021-05-10 19:56:39 收藏:0 阅读:20
盘符+冒号 切换盘符 dir 显示当前路径下所有文件 cd 切换目录 命令 /d 跨盘符切换 cls 清屏 ipconfig 查看ip calc 计算器 mspaint 画图工具 notepad 记事本 ping 测试网络 鼠标右键 粘贴 md 创建文件夹 rd 移除文件夹 cd> 创建文件 del ...
分类:Windows开发 时间:2021-05-11 10:00:05 收藏:0 阅读:27
public void DealEmail(string fjType = ".db") { IMAP_Client IMAPServer = new IMAP_Client(); try { //连接qq邮箱 IMAPServer.Connect(popServer, popPort); IMAP ...
分类:Windows开发 时间:2021-05-11 21:48:38 收藏:0 阅读:77
打包工具:nsis-2.46-setup 本地数据库:sqlitestudio-3.3.0 自动更新:自动更新库_4.3.0.0 管理 Nuget 程序包:https://www.cnblogs.com/xcsn/p/6258005.html 程序包引用 Protocol.Buffers: Newt ...
分类:Windows开发 时间:2021-05-11 22:13:36 收藏:0 阅读:25
一. ANSI窄字节和Unicode宽字节 产生原因:本来只有ANSI,用1个字节存放1个字符,但是,汉字和全角字符用1个字节存放不下,为此,微软推出了Unicode字节,用2个字节来存放字符。 代码体现: 1 //ANSI窄字节 2 CHAR cData1 = 'a';//char 3 PCHAR ...
分类:Windows开发 时间:2021-05-12 09:55:33 收藏:0 阅读:21
public class FileDownLoadController : BaseController { private string FileFolder = ConfigurationManager.AppSettings["DownFile"];//获取值 #region 下载 #regi ...
分类:Windows开发 时间:2021-05-12 10:07:13 收藏:0 阅读:11
// 引用Spire.Pdf /// <summary> /// 制作水印图片并给pdf添加图片水印(缺点:将图片作为背景并设成透明的形式的假水印) /// </summary> /// <param name="savepath">pdf文件地址</param> /// <param name=" ...
分类:Windows开发 时间:2021-05-12 14:56:52 收藏:0 阅读:15
代码: using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.S ...
分类:Windows开发 时间:2021-05-12 14:57:38 收藏:0 阅读:25
前言 我在刚接触使用中间件的时候,发现,中间件的使用并不是最难的,反而是中间件的下载,安装,配置才是最难的。 所以,这篇文章我们从头开始学习RabbitMq,真正的从头开始。 关于消息队列 其实消息队列没有那么神秘,我们这样想一下,用户访问网站,最终是要将数据以HTTP的协议的方式,通过网络传输到主 ...
分类:Windows开发 时间:2021-05-12 15:01:09 收藏:0 阅读:8
如图 为 where中 加max筛选 执行时间大约29504ms速度极慢 如图是 把max筛选提前计算后 时间只需要27ms!!!!!! 是前一种的1092倍!! 不知道 是不是什么bug 记录一下。。。。。 ...
分类:Windows开发 时间:2021-05-12 15:07:52 收藏:0 阅读:84
Make sure base method gets called in C# Can I somehow force a derived class to always call the overridden methods base? public class BaseClass { publi ...
分类:Windows开发 时间:2021-05-12 21:18:54 收藏:0 阅读:32
#include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 210; int n, k, m; int a[N], w[N][N]; int f[N][N]; int m ...
分类:Windows开发 时间:2021-05-13 10:09:19 收藏:0 阅读:17
解决httplistener querystring 中文乱码方案: 在请求到达时候,获取Request.Url,返回get请求参数 键值对 public class RequestHelper { public static Dictionary<string, string> EncodeQue ...
分类:Windows开发 时间:2021-05-13 13:24:23 收藏:0 阅读:21
1.打开你的窗口程序设计界面,选中窗口 2.在属性界面选择下面图的选项,输入函数名,回车 3.跳转到函数,编写函数里要执行的代码逻辑 /*关闭窗口程序时执行的代码*/ private void MyClose(object sender, FormClosedEventArgs e) { //编写要 ...
分类:Windows开发 时间:2021-05-13 19:41:15 收藏:0 阅读:10
1. redis 外网配置访问 bind 0.0.0.0 requirepass 123456 protected-mode no 2. 命令行 启动 redis-server.exe redis.windows.conf 查询命令行 redis-cli.exe -h 127.0.0.1 -p 63 ...
分类:Windows开发 时间:2021-05-13 19:42:42 收藏:0 阅读:32
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Diagnostics; using System.Runtime.InteropServices; ...
分类:Windows开发 时间:2021-05-13 19:57:25 收藏:0 阅读:27
13643653663673684851
上一页97009下一页
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!