码迷,mamicode.com
首页 > Windows程序 > 日排行
C# 控制台定时器
C# 定时器 关于C#中timer类 在C#里关于定时器类就有3个1.定义在System.Windows.Forms里2.定义在System.Threading.Timer类里3.定义在System.Timers.Timer类里System.Windows.Forms.Timer是应用于WinFor ...
分类:Windows程序   时间:2020-06-30 12:48:32    阅读次数:93
C#数据类型列表
C#数据类型列表 类型 大小 示例 bool 布尔值,true或false bool isStudent = ture byte 无符号8位整数 byte myByte = 2 sbyte 有符号8位数 sbyte mySbyte = -100 char 16位Uniicode字符 char mal ...
分类:Windows程序   时间:2020-06-30 13:02:45    阅读次数:124
Flink窗口Window机制详解
Flink 认为 Batch 是 Streaming 的一个特例,所以 Flink 底层引擎是一个流式引擎,在上面实现了流处理和批处理。而窗口(window)就是从 Streaming 到 Batch 的一个桥梁。Flink 提供了非常完善的窗口机制,这是我认为的 Flink 最大的亮点之一(其他的 ...
分类:Windows程序   时间:2020-06-30 14:26:28    阅读次数:68
Redis Server部署在Windows服务中
1、下载 https://github.com/MicrosoftArchive/redis/releases 2、解压,放到D:\Redis-x64-3.2.100 3、安装服务:redis-server --service-install redis.windows.conf (卸载服务:red ...
分类:Windows程序   时间:2020-06-30 14:39:14    阅读次数:61
Window-server-2012显示电脑图标
显示我的电脑图标 和下边两张图片的操作结果一样 ...
分类:Windows程序   时间:2020-06-30 17:11:47    阅读次数:52
win32-改变显示器的亮度
调用SetMonitorBrightness 代码示例: #pragma comment(lib, "dxva2.lib") #include <windows.h> #include <lowlevelmonitorconfigurationapi.h> #include <physicalmon ...
分类:Windows程序   时间:2020-06-30 17:13:39    阅读次数:94
.NET - WindowStyle = hidden vs. CreateNoWindow = true?
.NET - WindowStyle = hidden vs. CreateNoWindow = true? As Hans said, WindowStyle is a recommendation passed to the process, the application can choose ...
分类:Windows程序   时间:2020-06-30 17:21:05    阅读次数:76
在 VirtualBox 中安装 Windows XP 操作系统
Windows XP Professional with SP3 VOL简体中文【601.04MB】 文件名:zh-hans_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-74070.iso 大小:630237184字节 SHA1 ...
分类:Windows程序   时间:2020-06-30 17:29:56    阅读次数:88
windows 下搭建 MQTT 服务
1.首先搭建起MQTT服务 1.1安装mosquitto,mosquitto是开源的MQTT代理服务器,它的Windows安装包地址:https://mosquitto.org/download/ 1.2 安装、配置ActiveMQ ActiveMQ 下载地址:http://activemq.apa ...
分类:Windows程序   时间:2020-06-30 17:40:11    阅读次数:179
解决window.close()方法兼容各个浏览器(ie关闭会进行弹框提示是否关闭)
/** * 关闭页面,兼容各浏览器(解决ie提示框问题) */ function closeWindow(){ if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Chrome")!=-1) { ...
分类:Windows程序   时间:2020-06-30 17:42:40    阅读次数:137
在Windows server 2008 下架设tomcat网站服务器步骤(实验)
在Windows server 2008 下架设tomcat网站服务器步骤(实验)
分类:Windows程序   时间:2020-06-30 18:52:46    阅读次数:97
C#设置session过期时间
可以在web.config配置文件修改 具体做法: 在web.config中进行如下配置 <system.web> <sessionState mode="InProc" timeout="30"/> </system.web> InProc模式 优点:获取session状态的速度快,session ...
分类:Windows程序   时间:2020-06-30 18:53:03    阅读次数:84
IDEA登录github失败:Can‘t login: Connect to api.github
Can’t login: Connect to api.github.com:443 [api.github.com/13.250.168.23] failed: Connection refused: connect
分类:Windows程序   时间:2020-06-30 18:54:12    阅读次数:213
WIN32 远程注入 CreateRemoteThread
// remote06.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" BOOL func(DWORD ProcessID,char* Dll ...
分类:Windows程序   时间:2020-06-30 19:03:52    阅读次数:75
安装Fedora的windows子系统(WSL)
Fedora Remix for WSL是用于windows 10的适用于Linux的windows子系统(WSL),由Whitewater Foundry 的团队推出。Fedora Remix for WSL不是Fedora项目或者Red Hat推出,它是在Fedora Remix计划下提供的。 ...
分类:Windows程序   时间:2020-06-30 20:23:15    阅读次数:156
C#读取文件中的浮点数据
string path = "test.txt"; FileStream fs = new FileStream(path, FileMode.Open); StreamReader sr = new StreamReader(fs); char[] separator = new char[] { ...
分类:Windows程序   时间:2020-06-30 20:43:53    阅读次数:78
C#通过完整的例子,Get常用的2个套路,理解抽象方法,虚方法,接口,事件
一.理解:抽象方法,虚方法,接口,事件 描述: 1.定义一个抽象父类“People”: 要求: 1>3个属性:名字,性别,年龄; 2>一个普通方法“说话”; 3>2个抽象方法:“喜欢什么”,“会做什么” 4>1个虚方法“母语” 5>定义一个接口,用于唱歌 2.分别创建3个子类:学生,老师,校长 要求 ...
分类:Windows程序   时间:2020-06-30 20:53:26    阅读次数:63
搭建k8s集群(三):部署apiserver
下载 kubernetes 1.18.3 二进制安装包:https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.18.md#v1183 注意:打开链接有很多下载包,包含kubernetes-client 、 ...
分类:Windows程序   时间:2020-06-30 20:54:03    阅读次数:77
树莓派使用snowboy以及百度语音api实现语音识别助手
使用 Snowboy 来完成语音助手的唤醒功能 使用 百度语音识别 来识别语音 实现结果如下 具体实现方式以及源码下载请前往 https://www.passerma.com/article/54 ...
分类:Windows程序   时间:2020-06-30 22:33:39    阅读次数:175
C# MVC EF配置失败
报错信息: The Entity Framework provider type 'System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer' registered in the application c ...
分类:Windows程序   时间:2020-06-30 22:37:56    阅读次数:85
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!