码迷,mamicode.com
首页 > Windows程序 > 周排行
Windows查看端口被哪个进程占用
查看PID: netstat -ano|findstr 端口号 查看进程名称: tasklist|findstr PID 结束进程: taskkill -F -PID PID号
分类:Windows程序   时间:2015-12-07 18:11:42    阅读次数:203
造轮子:C#中将图片转化成base64字符串
厂址:http://www.cnblogs.com/yunfeifei/p/4165351.html1.在C#中将图片转化成base64字符串:using System;using System.Collections.Generic;using System.Linq;using System.T...
分类:Windows程序   时间:2015-12-07 20:31:17    阅读次数:216
C#获取IP和整数IP方法
体验: http://tool.hovertree.com/info/ip/代码如下: 1 using System; 2 using System.Text; 3 using System.Text.RegularExpressions; 4 using System.Web; 5 6 name....
分类:Windows程序   时间:2015-12-08 14:18:16    阅读次数:209
WPF中将16进制颜色码转换成SolidColorBrush
1 new SolidColorBrush((Color)ColorConverter.ConvertFromString("#69560")); View Code使用ColorConverter.ConvertFromString(string colorValue)方法
分类:Windows程序   时间:2015-12-08 18:18:17    阅读次数:522
张冬:OpenPOWER CAPI为什么这么快?(二)
?? 张冬:OpenPOWER CAPI为什么这么快?(二) PMC公司数据中心存储架构师张冬 有了CAPI的FPGA是怎么做的? 首先认识一下这个体系里的三个角色: AFU(Acceleration Function Unit),主加速逻辑部分就是FPAG的加速芯片。用户能够把自己的加速逻辑和Fi
分类:Windows程序   时间:2016-02-28 10:57:34    阅读次数:306
C# winform DatagridView 的简单操作
数据显示操作: dgBill.Columns[0].DataPropertyName = "key1"; dgBill.Columns[1].DataPropertyName = "key2"; dgBill.Columns[2].DataPropertyName = "key3"; DataTab
分类:Windows程序   时间:2016-02-28 16:27:01    阅读次数:206
STemwin汉字显示
硬件环境: STM32F429,电容屏800X480 5点触控RGB屏幕 ,SPI flash; 软件环境: UCOSIII,STemwin; 汉字显示方法: 1、在SPIflash中装在字库XBF_XINSONGTI19; 2、使用U2C.exe工具进行UTF-8到字体的转化: 1)新建test.
分类:Windows程序   时间:2016-02-28 19:46:33    阅读次数:563
[Hapi.js] View engines
View engines, or template engines, allow you to maintain a clean separation between your presentation layer and the rest of your application. This pos
分类:Windows程序   时间:2016-02-29 07:02:37    阅读次数:278
win7下IE11开发者工具无法使用
问题: win7下,IE11开发者工具面板显示 解决方案: 这是IE11的一个bug 安装KB3008923这个补丁可以解决问题:http://www.microsoft.com/zh-CN/download/details.aspx?id=45134 (32位系统) http://www.micr
分类:Windows程序   时间:2016-02-29 16:10:50    阅读次数:272
WINCE 分区如何隐藏
[HKEY_LOCAL_MACHINE/System/StorageManager/Profiles/xxx] "Folder"="Data Folder" ;这个就是分区名 "MountFlags"=dword:11 ;MountAsROM&MountHidden 当MountFlags按位或,包
分类:Windows程序   时间:2016-02-29 21:40:51    阅读次数:315
C# IOCP完成端口模型(简单实用高效)
1、在C#中,不用去面对完成端口的操作系统内核对象,Microsoft已经为我们提供了SocketAsyncEventArgs类,它封装了IOCP的使用。请参考:http://msdn.microsoft.com/zh-cn/library/system.net.sockets.socketasyn
分类:Windows程序   时间:2016-03-01 12:46:36    阅读次数:706
WCF、WebAPI、WCFREST、WebService之间的区别
注明:转载 在.net平台下,有大量的技术让你创建一个HTTP服务,像Web Service,WCF,现在又出了Web API。在.net平台下,你有很多的选择来构建一个HTTP Services。我分享一下我对Web Service、WCF以及Web API的看法。 Web Service 1、它...
分类:Windows程序   时间:2016-03-01 20:57:42    阅读次数:199
Window环境下配置Redis服务的方法及查看缓存数据的工具介绍
工具下载位置:http://pan.baidu.com/s/1hqVh1f2,包括服务端配置以及查看缓存的工具。 服务端是以服务的形式运行,将Redis服务端解压到某个目录,然后执行cmd执行命令: redis-server.exe --service-install redis.windows.c
分类:Windows程序   时间:2016-03-01 22:47:05    阅读次数:291
c#中输入文本文字,将输入的文字生成图片
private void button1_Click(object sender, EventArgs e) { //获取文本 string text = this.txtName.Text; //得到Bitmap(传入Rectangle.Empty自动计算宽高) Bitmap bmp = Text
分类:Windows程序   时间:2016-03-02 20:04:19    阅读次数:216
安装Active Directory 证书错误{0x80070842 (win32:2114)}
报错信息解决方法1、查看“Microsoft网络的文件和打印机共享”是否安装未安装请点击“安装”->服务->添加->弹出对话框选择“Microsoft网络的文件和打印机共享”2、查看“ComputerBrowser”服务是否启动注明:服务启动依存关系服务有“Server”和“Workstation”
分类:Windows程序   时间:2016-03-03 15:00:43    阅读次数:260
使用Zabbix的API登陆
#!/usr/bin/pythonimporturllib2importjsondeflogin(username,password,url,data):request=urllib2.Request(url,data)forkeyinheader:request.add_header(key,header[key])try:result=urllib2.urlopen(request)exceptURLErrorase:print"urlerror:",e.codeelse:response=json.lo..
分类:Windows程序   时间:2016-03-04 02:05:57    阅读次数:257
delphi 数据导出到word
procedure TFrmWeekAnalysisQry.BtnExportToExcelClick(Sender: TObject);var wordApp,WordDoc,WrdSelection:variant; strAdd:string; i,j,iRangeEnd,iStart,iEn
分类:Windows程序   时间:2016-03-04 16:00:22    阅读次数:289
Delphi实现截屏存盘的方法
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls,jpeg; type TForm1 = class(TFor
分类:Windows程序   时间:2016-03-05 06:54:45    阅读次数:241
C#main函数
Main函数: static void Main(string [] args) { }程序代码需要写在Main函数的花括号内。 一、输出:Console.WriteLine("这是我的第一个程序。");自动换行Console.WriteLine("这是第二行代码。");自动换行Console.Wr
分类:Windows程序   时间:2016-03-07 01:28:51    阅读次数:224
怎样在win7中 安装Tomcat7.0
Tomcat 服务器是一个免费的开放源代码的Web 应用服务器,属于轻量级应用服务器。 我们可以到官方网站下载Tomcat7 工具/原料 win7 Tomcat7.0 方法/步骤 1 在官网下载软件:tomcat.apache.org/download-70.cgi 2 双击运行:apache-to
分类:Windows程序   时间:2016-03-07 10:08:57    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!