1、新建一个文本文件,将文件后缀改为bat,然后添加如下代码 1 shutdown -r -t 0 2、创建计划任务 2.1 单击开始——任务计划程序(右键我的电脑——管理——任务计划程序) 2.2、单击任务计划程序库——创建基本任务 2.3、输入名称及描述 2.4、选择任务合适开始 2.5、设置具 ...
分类:
Windows开发 时间:
2020-06-05 19:05:39
收藏:
0 评论:
0 赞:
0 阅读:
46
public class HttpClientHelper { // 执行post操作 public static string doPost(string url, Dictionary<string, string> parameters, int timeOutInMillisecond) { ...
分类:
Windows开发 时间:
2020-06-05 18:59:01
收藏:
0 评论:
0 赞:
0 阅读:
354
using System; using System.IO; using System.IO.Compression; using System.Security.Cryptography; using System.Text; static void Main(string[] args) { D ...
分类:
Windows开发 时间:
2020-06-05 18:58:23
收藏:
0 评论:
0 赞:
0 阅读:
60
使用window.history.go(-1)返回上页的同时刷新上页强制载入后刷新一次加入以下代码: 引用内容: <script>if(window.name != "bencalie"){ location.reload(); window.name = "bencalie";}else{ win ...
分类:
Windows开发 时间:
2020-06-05 18:56:55
收藏:
0 评论:
0 赞:
0 阅读:
39
实现raid有2种方式:软件 RAID 的性能较低,因为其使用主机的资源。 需要加载 RAID 软件以从软件 RAID 卷中读取数据。在加载 RAID 软件前,操作系统需要引导起来才能加载 RAID 软件。在软件 RAID 中无需物理硬件。零成本投资。硬件 RAID 的性能较高。他们采用 PCI E... ...
分类:
Windows开发 时间:
2020-06-05 18:10:58
收藏:
0 评论:
0 赞:
0 阅读:
42
https://blog.csdn.net/feifansong/article/details/80255276 这是因为工作写的一个文档,主要是我们开发人员都不会Linux不会vi也不会命令行,于是研究了一下Windows系统调试ARM Linux程序的办法,在这共享一下。 1. 概述 嵌入式L ...
分类:
Windows开发 时间:
2020-06-05 18:05:27
收藏:
0 评论:
0 赞:
0 阅读:
66
https://www.cnblogs.com/dream66/p/10647166.html 前言 Robot Framework作为公司能快速落地实现UI自动化测试的一款框架,同时也非常适合刚入门自动化测试的朋友们去快速学习自动化,笔者计划通过从搭建逐步到完成自动化测试的过程来整体描述它的使用。 ...
分类:
Windows开发 时间:
2020-06-05 17:42:04
收藏:
0 评论:
0 赞:
0 阅读:
53
静态字段是属于类的,由类名直接调用,因为static在程序初始化的时候就已经在内存创建好了,直接调用就行 常量属于对象的,只有把类实例化出来,在用对象名才可以调用,因为在程序初始化的时候,如果常量没有被调用,那么就不会占用内存空间,只有在实例化对象的时候,才会在内存中开辟该内存的空间 class S ...
分类:
Windows开发 时间:
2020-06-05 16:58:55
收藏:
0 评论:
0 赞:
0 阅读:
55
没有名字 ,索引器的内部本质 (ILSpy的IL模式下看)类型 this[参数]{get;set;} 可以是只读或者只写(在get或者set前加上private) 字符串是只读索引,因此不能对字符串中的某个字符进行从新赋值,即只能char ch = s[5];不能s[5]=‘a’。 开发中自己写的机 ...
分类:
Windows开发 时间:
2020-06-05 16:17:10
收藏:
0 评论:
0 赞:
0 阅读:
39
小编最近发现有些用户在使用win10系统的笔记本电脑有时候上不了网,无法去连接wifi上网,一检查才发现无线网卡驱动没有了,需要重新安装,那么该怎么办呢。小编这里就教朋友们在win10系统上安装无线网卡驱动,安装好后我们就能在笔记本电脑上享受无线wifi上网的乐趣了。1、找到你路由器的品牌官方网站, ...
分类:
Windows开发 时间:
2020-06-05 16:13:42
收藏:
0 评论:
0 赞:
0 阅读:
66
参考: https://www.jianshu.com/p/538b467f1105 1.查看显卡支持的cuda: 2. ...
分类:
Windows开发 时间:
2020-06-05 16:10:03
收藏:
0 评论:
0 赞:
0 阅读:
401
MarkDown转html代码实现方案C# 分类: MarkDowngithubnuget 使用UWP toolkit中的Parse https://docs.microsoft.com/en-us/windows/communitytoolkit/parsers/markdownparser 解析 ...
分类:
Windows开发 时间:
2020-06-05 16:02:18
收藏:
0 评论:
0 赞:
0 阅读:
102
使用组策略将 WinHTTP 代理设置应用于 Windows 客户端 适用于: Windows Server 2019Windows Server 2016Windows Server 2012 R2 详细 摘要 This article describes how to use Group Pol ...
分类:
Windows开发 时间:
2020-06-05 16:01:58
收藏:
0 评论:
0 赞:
0 阅读:
440
Format specifierNameDescriptionExamples "C" or "c" Currency Result: A currency value.Supported by: All numeric types.Precision specifier: Number of de ...
分类:
Windows开发 时间:
2020-06-05 15:52:56
收藏:
0 评论:
0 赞:
0 阅读:
50
/// <summary> /// Json字符串首字母转大写 /// </summary> /// <param name="strJsonData">json字符串</param> /// <returns></returns> public static string UpperFirst(s ...
分类:
Windows开发 时间:
2020-06-05 15:39:55
收藏:
0 评论:
0 赞:
0 阅读:
49
string json = Jsonstr(fileName);//Jsonstr函数读取json数据的文本txt JsonDataT result = JsonConvert.DeserializeObject<JsonDataT>(json); /// <summary> /// 转换txt中j ...
分类:
Windows开发 时间:
2020-06-05 15:39:13
收藏:
0 评论:
0 赞:
0 阅读:
48
double value; value = 123; Console.WriteLine(value.ToString("00000")); Console.WriteLine(String.Format("{0:00000}", value)); // Displays 00123 value = ...
分类:
Windows开发 时间:
2020-06-05 15:26:50
收藏:
0 评论:
0 赞:
0 阅读:
45
1 public static ImageCodecInfo GetEncoderInfo(String mimeType) 2 3 { 4 int j; 5 ImageCodecInfo[] encoders; 6 encoders = ImageCodecInfo.GetImageEncoder ...
分类:
Windows开发 时间:
2020-06-05 14:41:11
收藏:
0 评论:
0 赞:
0 阅读:
240
[root@backup samba]# su - chaogeLast login: Fri Jun 5 21:05:48 CST 2020 on pts/0[chaoge@backup ~]$ pwd/home/chaoge[chaoge@backup ~]$ lltotal 0drwxr-xr ...
分类:
Windows开发 时间:
2020-06-05 14:00:58
收藏:
0 评论:
0 赞:
0 阅读:
48
场景 Winform中设置ZedGraph鼠标悬浮显示距离最近曲线上的点的坐标值和X轴与Y轴的标题: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/103140781 在上面已经实现鼠标悬浮显示最近曲线上点的基础上,还有一种方式是 ...
分类:
Windows开发 时间:
2020-06-05 12:56:44
收藏:
0 评论:
0 赞:
0 阅读:
41