win10客户端清除rms缓存
分类:
Windows开发 时间:
2020-03-13 22:54:27
收藏:
0 评论:
0 赞:
0 阅读:
364
一般的,执行以下命令: sudo passwd root 可以设置root密码,然后su root可以登录root用户 但是EI Capitan即使登录root用户还有一些操作是被保护的,这个称作 System Integrity Protection(SIP) 不确定是不是EI Captian系统 ...
分类:
Windows开发 时间:
2020-03-13 21:41:25
收藏:
0 评论:
0 赞:
0 阅读:
68
config windows firewall with specific way
分类:
Windows开发 时间:
2020-03-13 20:04:34
收藏:
0 评论:
0 赞:
0 阅读:
81
项目使用MVVM,创建了一个基类VMBase 然后创建继承类的时候,要写一个属性,比较麻烦 折腾了一会文本模板发现不错,比如下面的代码,就能自动生成一个类,效率还是蛮高的! ...
分类:
Windows开发 时间:
2020-03-13 19:48:20
收藏:
0 评论:
0 赞:
0 阅读:
64
此函数是获取控件或者窗口中的文本 代码: TCHAR str1[255]; TCHAR str2[] = L"Hello World"; GetWindowText(hWnd_button, str1, 255); if (_tcscmp(str1, str2) == 0) { //it is ch ...
分类:
Windows开发 时间:
2020-03-13 19:20:58
收藏:
0 评论:
0 赞:
0 阅读:
82
//1.使用Dictionary字典提交数据,这样比较清晰。(针对对象) var jsonTextReplace = jsonText.Replace("[", " ").Replace("]", ""); var jo = JObject.Parse(jsonTextReplace); strin ...
分类:
Windows开发 时间:
2020-03-13 19:19:33
收藏:
0 评论:
0 赞:
0 阅读:
375
命令参考自:https://blog.csdn.net/lhtzbj12/article/details/53538857 本地ffmpeg文件下载:https://ffmpeg.zeranoe.com/builds/win64/static/ 解压后将ffmpeg.exe拷贝到文件夹下,在cmd命 ...
分类:
Windows开发 时间:
2020-03-13 17:54:19
收藏:
0 评论:
0 赞:
0 阅读:
82
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 uses superobject; procedure TForm1.FormCreate(Sender: TObject); var aJson: ISuperObject; aSuperA ...
分类:
Windows开发 时间:
2020-03-13 17:52:25
收藏:
0 评论:
0 赞:
0 阅读:
62
private static void ReplaceExeIco(string exepath, string icopath) { try { FileStream fileStream = new FileStream(icopath, FileMode.Open, FileAccess.Re ...
分类:
Windows开发 时间:
2020-03-13 16:54:03
收藏:
0 评论:
0 赞:
0 阅读:
144
一步一步学solr--windows下solr5.4.0环境搭建原创GW_Cheng 最后发布于2016-01-05 14:43:09 阅读数 4441 收藏展开第一步:下载Solr下载地址Solr5.4.0官方下载地址 http://apache.opencas.org/lucene/solr/5 ...
分类:
Windows开发 时间:
2020-03-13 16:27:27
收藏:
0 评论:
0 赞:
0 阅读:
84
参考Flink官方代码的example https://github.com/apache/flink/blob/master/flink-examples/flink-examples-streaming/src/main/java/org/apache/flink/streaming/examp ...
分类:
Windows开发 时间:
2020-03-13 15:24:33
收藏:
0 评论:
0 赞:
0 阅读:
320
VS2012下实现类库,并调用。 1.创建类库 2.代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading ...
分类:
Windows开发 时间:
2020-03-13 14:07:30
收藏:
0 评论:
0 赞:
0 阅读:
82
windows下编写的python脚本上传的linux下执行会出现错误: usr/bin/python^M: bad interpreter: No such file or directory 原因: 因为windows行结尾和linux行结尾标识不同造成的,在window中行结尾符为'\r\n' ...
分类:
Windows开发 时间:
2020-03-13 13:44:28
收藏:
0 评论:
0 赞:
0 阅读:
69
1. 安装JDK 2. 下载 下载zookeeper https://zookeeper.apache.org/releases.html#download 下载kafka http://kafka.apache.org/downloads 3. 安装 zookeeper (1) 关于zookeep ...
分类:
Windows开发 时间:
2020-03-13 13:38:30
收藏:
0 评论:
0 赞:
0 阅读:
81
Window7+Linux (CentOS-7 x86 DVD -1904.iso) 搭建ftp服务 1.下载安装 WinSCP.5.15.3 进入Linux,打开终端,获取ip 2.WinSCP连接Linux 1)进入WinSCP文件夹,找到如下程序 2)点击WinSCP.exe,出现如下界面 3 ...
分类:
Windows开发 时间:
2020-03-13 11:58:44
收藏:
0 评论:
0 赞:
0 阅读:
118
NuGet 安装SqlSugar 1.Model文件下新建 DbContext 类 public class DbContext { public DbContext() { Db = new SqlSugarClient(new ConnectionConfig() { ConnectionStr ...
分类:
Windows开发 时间:
2020-03-13 11:56:54
收藏:
0 评论:
0 赞:
0 阅读:
61
string listpath = "D:\\Testdata\\"; if (Directory.Exists(listpath))//如果不存在就创建file文件夹 { Directory.CreateDirectory(listpath); } ...
分类:
Windows开发 时间:
2020-03-13 11:52:12
收藏:
0 评论:
0 赞:
0 阅读:
80
远程windows Sever 2012 时候 远程提示:由于没有远程桌面授权服务器可以提供许可证,远程会话被中断。请跟服务器管理员联系。 原因: windows server可以多用户同时登陆,默认最大远程登录数量为2,如果有更多人需要同时远程登录,则需要安装远程桌面授权服务,第一次安装后,免费期 ...
分类:
Windows开发 时间:
2020-03-13 11:26:02
收藏:
0 评论:
0 赞:
0 阅读:
76
注意点: 要倒序,否则无法刚好二进制拼凑 设置哨兵,0的深度为0,且超过树的根节点的值为=0 #include<iostream> #include<queue> #include<map> #include<vector> #include<cstdio> #include<algorithm> ...
分类:
Windows开发 时间:
2020-03-13 11:11:00
收藏:
0 评论:
0 赞:
0 阅读:
74
1 1.绝对路径: 2 this.pictureBox.Image=Image.FromFile("C:\\test.jpg"); 3 4 2.相对路径: 5 Application.StartupPath; 6 可以得到程序根目录 7 this.pictureBox.Image=Image.Fro ...
分类:
Windows开发 时间:
2020-03-13 10:51:15
收藏:
0 评论:
0 赞:
0 阅读:
461