网站首页
立即登录
登录
首页
»
C#
»
模拟QQ2013登陆器并实现登陆密码的获取
模拟QQ2013登陆器并实现登陆密码的获取
于 2015-01-17 发布
0
128
下载积分:
1
下载次数:
0
我要下载
代码说明:
模拟QQ2013登陆器并实现登陆密码的获取
下载说明:请别用迅雷下载,失败请重下,重下不扣分!
发表评论
提交评论
0 个回复
c
++猜数小游戏源码(入门级)
c++猜数小游戏源码(入门级)
2020-04-19
下载
积分:
1
常用的图像处理算法及其实现(C
语
言
)
常用的图像处理算法及其实现(C语言)
2019-06-04
下载
积分:
1
C#控制雷赛板卡两轴直线插补
雷赛板卡运动控制案例
2020-11-29
下载
积分:
1
Ninje
c
t依赖注入——构造函数、属性、方法和字段的注入 例子 附源码下载
1、Ninject简介 Ninject是基于.Net平台的依赖注入框架,它能够将应用程序分离成一个个高内聚、低耦合(loosely-coupled, highly-cohesive)的模块,然后以一种灵活的方式组织起来。Ninject可以使代码变得更容易编写、重用、测试和修改。 Ninject官方网址为:http://www.ninject.org/ 。2、项目引用Ninject1>、 Tools -> Libaary Package Manager -> Package Manager Console,打开Package Manager Console窗口;2>、在Package Manager Console窗口中输入指令,Enter;1 PM> Install-Package Ninject3>、在项目中添加对Ninject的引用。3、Ninject使用Modules and the Kernel注入 Ninject中将类别以模块(Module)形式进行分组绑定,每一个模块代表应用程序的一个独立部分,这些模块可以根据需要进行组织。每一个模块都需要实现接口IModule,多数采用扩展StandardModule类来便捷实现。 Ninject依赖注入包括构造函数、属性、方法和字段的依赖注入
2013-07-10
下载
积分:
1
非常好看的验证码 完整实例下载
非常好看的验证码 完整实例下载
2013-11-04
下载
积分:
1
Naudio 音频处理类 实例源码下载
Naudio 音频处理类 实例源码下载
2014-07-21
下载
积分:
1
winform 文件浏览控件 例子
winform 文件浏览控件 例子
2015-06-19
下载
积分:
1
easyui 工作流设计器设计 例子源码
easyui 工作流设计器设计 例子源码
2014-11-04
下载
积分:
1
C# ListView开源表格控件XPTable源码包2
C# ListView开源表格控件XPTable源码包2
2015-01-08
下载
积分:
1
C# 制作系统服务 实例源码下载
附件中有详细的安装使用文档,大概步骤如下:1.新建Windows项目,选择"Windows服务"类型的工程。2.生成的Program.cs文件中,定义了服务启动的Main函数。 代码 namespace WindowsService1{ static class Program { /// /// 应用程序的主入口点。 /// static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new Service1() }; ServiceBase.Run(ServicesToRun); } }} 3.在新建的工程中,点击Service1.cs文件,切换到代码视图,生成的代码继承于ServiceBase基类,并重载了OnStart和OnStop方法。我在这个文件中进行了一些简单的操作,就是在服务开始的时候,定义一个定时器,然后每隔1秒钟,向文件中写入当前时间。 代码 namespace WindowsService1{ public partial class Service1 : ServiceBase { Timer timer; public Service1() { InitializeComponent(); } protected override void OnStart(string[] args) { timer = new Timer(1000); timer.Elapsed = new ElapsedEventHandler(timer_Elapsed); timer.Start(); } protected override void OnStop() { timer.Stop(); timer.Dispose(); } void timer_Elapsed(object sender, ElapsedEventArgs e) { string filePath = AppDomain.CurrentDomain.BaseDirectory "test.txt"; StreamWriter sw = null; if (!File.Exists(filePath)) { sw = File.CreateText(filePath); } else { sw = File.AppendText(filePath); } sw.Write("访问时间:" DateTime.Now.ToString() Environment.NewLine); sw.Close(); } }}4.向工程中添加一个安装程序类。 4.在新添加的安装程序类中,设定服务的名称,启动方式,账号名和密码等信息。 代码 namespace WindowsService1{ partial class Installer1 { /// /// 必需的设计器变量。 /// private System.ComponentModel.IContainer components = null; private System.ServiceProcess.ServiceProcessInstaller spInstaller; private System.ServiceProcess.ServiceInstaller sInstaller; /// /// 清理所有正在使用的资源。 /// /// 如果应释放托管资源,为 true;否则为 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region 组件设计器生成的代码 /// /// 设计器支持所需的方法 - 不要 /// 使用代码编辑器修改此方法的内容。 /// private void InitializeComponent() { components = new System.ComponentModel.Container(); // 创建ServiceProcessInstaller对象和ServiceInstaller对象 this.spInstaller =new System.ServiceProcess.ServiceProcessInstaller(); this.sInstaller = new System.ServiceProcess.ServiceInstaller(); // 设定ServiceProcessInstaller对象的帐号、用户名和密码等信息 this.spInstaller.Account = System.ServiceProcess.ServiceAccount.LocalSystem; this.spInstaller.Password = null; this.spInstaller.Username = null; // 设定服务的名称 this.sInstaller.ServiceName = "WindowsService1"; //设定服务启动的方式 this.sInstaller.StartType = System.ServiceProcess.ServiceStartMode.Automatic; this.Installers.AddRange(new System.Configuration.Install.Installer[] { this.spInstaller,this.sInstaller}); } #endregion }}5.生成工程,在bin目录下会生成exe文件。如果直接运行exe文件的话,是不能执行的,需要使用安装Windows服务用到一个名为InstallUtil.exe的命令行工具,打开命令行工具,转到InstallUtil.exe的目录下,我安装的是VS 2010,对应的目录为:C:WindowsMicrosoft.NETFrameworkv4.0.30319InstallUtil.exe,然后执行InstallUtil.exe 待执行的exe文件的目录,如:InstallUtil.exe F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe。执行成功后,会在Windows的服务中,出现了刚刚添加的服务的名称。 6.启动该服务,这时打开binDebug文件夹,发现已经生成了一个test.txt的文件,里面记录了时间。这说明服务已经正式开始执行。7.停止服务的操作也和简单,打开命令行工具,转到C:WindowsMicrosoft.NETFrameworkv4.0.30319目录,然后执行InstallUtil.exe - u F:MyProjectWindowsService1WindowsService1inDebugWindowsService1.exe命令就可以了。
2015-04-21
下载
积分:
1
696518
资源总数
106155
会员总数
8
今日下载
热门标签
Visual C++
matlab
C/C++
Java
Others
Unix_Linux
EasyLanguage易语言
Visual Basic
C#
PDF
C++
Delphi
VHDL
ASP
WINDOWS
热门下载
yu-jiang-Paper
仿真高斯在大气湍流中的传输 gauss
选址定容
ADP code
HT16C22
reconfiguration
SatNav-ToolBox-3.0-
Final Version
BG-PSO
fig1_Monte_Carlo_3
SCE-UA
lstm
LMS自适应滤波算法
蚁群算法
采用粒子滤波的多目标检测前跟踪程序 MPF_TBD
周期性边界条件
自适应矢量化算法(VQ)源程序VQ
kol
最先提出深度学习算法hinton的自动编码器AutoEncoder
GHDP1